]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed bug in configure which would prevent properly detecting epoll availability.
authorFrancesco Chemolli <kinkie@squid-cache.org>
Thu, 13 May 2010 15:25:16 +0000 (17:25 +0200)
committerFrancesco Chemolli <kinkie@squid-cache.org>
Thu, 13 May 2010 15:25:16 +0000 (17:25 +0200)
configure.in

index 5dbe9e3fa964fd6319da83453ab1ffc0fe7e74b5..220f85128bfadf5ae690f27aa8ab2c3c1841a397 100644 (file)
@@ -1250,7 +1250,7 @@ if test "$enable_epoll" != "no" ; then
   AC_CHECK_HEADERS([sys/epoll.h])
 
   dnl Verify that epoll really works
-  if test "$ac_cv_func_epoll_ctl" = yes; then
+  if test "x$ac_cv_search_epoll_ctl" != 'xno' ; then
     SQUID_CHECK_EPOLL
   fi