From cc53e9254f1299c77d3915b72ee09bd964c65dfd Mon Sep 17 00:00:00 2001 From: irungentoo Date: Tue, 22 Jul 2014 15:47:06 -0400 Subject: [PATCH] Fixed --disable-epoll making configure fail. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d1c54c71..e3e13c30 100644 --- a/configure.ac +++ b/configure.ac @@ -206,8 +206,8 @@ AC_ARG_ENABLE([[epoll]], [enable_epoll='auto'] ) +AX_HAVE_EPOLL if test "$enable_epoll" != "no"; then - AX_HAVE_EPOLL if test "${ax_cv_have_epoll}" = "yes"; then AC_DEFINE([TCP_SERVER_USE_EPOLL],[1],[define to 1 to enable epoll support]) enable_epoll='yes'