From: Amos Jeffries Date: Mon, 1 Nov 2010 23:26:02 +0000 (-0600) Subject: Author: Declan White X-Git-Tag: SQUID_3_1_10~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2a0638cc29e3b0b2fd797e40409196a31a8335f;p=thirdparty%2Fsquid.git Author: Declan White Fix /dev/poll and poll() selection priority --- diff --git a/configure.in b/configure.in index 439bd92b91..cd3dba995f 100644 --- a/configure.in +++ b/configure.in @@ -3071,10 +3071,10 @@ elif test -z "$disable_epoll" && test "$ac_cv_epoll_works" = "yes" ; then SELECT_TYPE="epoll" elif test -z "$disable_kqueue" && test "$ac_cv_func_kqueue" = "yes" ; then SELECT_TYPE="kqueue" -elif test -z "$disable_poll" && test "$ac_cv_func_poll" = "yes" ; then - SELECT_TYPE="poll" elif test "x$enable_devpoll" != "xno" && test "x$ac_cv_devpoll_works" = "xyes"; then SELECT_TYPE="devpoll" +elif test -z "$disable_poll" && test "$ac_cv_func_poll" = "yes" ; then + SELECT_TYPE="poll" elif test -z "$disable_select" && test "$ac_cv_func_select" = "yes" ; then case "$host_os" in mingw|mingw32)