From 5b13eab8602851849cbfe6660a160ace3bc226d0 Mon Sep 17 00:00:00 2001 From: Tomasz Kojm Date: Fri, 8 Aug 2008 18:47:58 +0000 Subject: [PATCH] HPUX fix (bb#1130) git-svn: trunk@4093 --- configure | 4 ++-- configure.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index f01e82576..467ad42a8 100755 --- a/configure +++ b/configure @@ -19067,7 +19067,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | fi rm -f conftest* -if test $have_fd_set = yes; then +if test "$have_fd_set" = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_SYS_SELECT_H 1 @@ -19121,7 +19121,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - if test $have_fd_set = yes; then + if test "$have_fd_set" = yes; then { echo "$as_me:$LINENO: result: yes, found in sys/types.h" >&5 echo "${ECHO_T}yes, found in sys/types.h" >&6; } else diff --git a/configure.in b/configure.in index 1f1bb1a43..6ee5a56ff 100644 --- a/configure.in +++ b/configure.in @@ -1412,7 +1412,7 @@ fi dnl Check if needs to be included for fd_set AC_MSG_CHECKING([for fd_set]) AC_HEADER_EGREP([fd_mask], [sys/select.h], [have_fd_set=yes]) -if test $have_fd_set = yes; then +if test "$have_fd_set" = yes; then AC_DEFINE([HAVE_SYS_SELECT_H], 1, "have ") AC_MSG_RESULT([yes, found in sys/select.h]) else @@ -1422,7 +1422,7 @@ else #include #endif], [fd_set readMask, writeMask;], have_fd_set=yes, have_fd_set=no) - if test $have_fd_set = yes; then + if test "$have_fd_set" = yes; then AC_MSG_RESULT([yes, found in sys/types.h]) else AC_DEFINE([NO_FD_SET], 1, "no fd_set")