From: Francesco Chemolli Date: Thu, 13 May 2010 15:25:16 +0000 (+0200) Subject: Fixed bug in configure which would prevent properly detecting epoll availability. X-Git-Tag: SQUID_3_2_0_1~216^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dcac6885b1219c7cf94d5e47dec4c4a925d0cfcf;p=thirdparty%2Fsquid.git Fixed bug in configure which would prevent properly detecting epoll availability. --- diff --git a/configure.in b/configure.in index 5dbe9e3fa9..220f85128b 100644 --- a/configure.in +++ b/configure.in @@ -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