From: hno <> Date: Sat, 21 Feb 2004 08:14:08 +0000 (+0000) Subject: Bootstrapped X-Git-Tag: SQUID_3_0_PRE4~1134 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87de40f031b8a467a8b1d38e8608af0d50331ea4;p=thirdparty%2Fsquid.git Bootstrapped --- diff --git a/configure b/configure index da82e1683f..6a7a7365b1 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.350 . +# From configure.in Revision: 1.352 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.57. # @@ -15756,32 +15756,32 @@ done -if test "$ac_cv_func_poll" = "yes" ; then - SELECT_TYPE="poll" +if test "$ac_cv_func_kqueue" = "yes" ; then + SELECT_TYPE="kqueue" cat >>confdefs.h <<\_ACEOF -#define USE_POLL 1 +#define USE_KQUEUE 1 _ACEOF -elif test "$ac_cv_func_select" = "yes" ; then - SELECT_TYPE="select" +elif test "$ac_cv_func_epoll" = "yes" ; then + SELECT_TYPE="epoll" cat >>confdefs.h <<\_ACEOF -#define USE_SELECT 1 +#define USE_EPOLL 1 _ACEOF -elif test "$ac_cv_func_kqueue" = "yes" ; then - SELECT_TYPE="kqueue" +elif test "$ac_cv_func_poll" = "yes" ; then + SELECT_TYPE="poll" cat >>confdefs.h <<\_ACEOF -#define USE_KQUEUE 1 +#define USE_POLL 1 _ACEOF -elif test "$ac_cv_func_epoll" = "yes" ; then - SELECT_TYPE="epoll" +elif test "$ac_cv_func_select" = "yes" ; then + SELECT_TYPE="select" cat >>confdefs.h <<\_ACEOF -#define USE_EPOLL 1 +#define USE_SELECT 1 _ACEOF else