]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bootstrapped
authorhno <>
Sat, 21 Feb 2004 08:14:08 +0000 (08:14 +0000)
committerhno <>
Sat, 21 Feb 2004 08:14:08 +0000 (08:14 +0000)
configure

index da82e1683f82aeeb8198d62f2852e85b3da61949..6a7a7365b175c17f50455e5c8a5eb8c0f8acc32e 100755 (executable)
--- 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