From c2a0638cc29e3b0b2fd797e40409196a31a8335f Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Mon, 1 Nov 2010 17:26:02 -0600 Subject: [PATCH] Author: Declan White Fix /dev/poll and poll() selection priority --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.47.2