summaryrefslogtreecommitdiff
path: root/src/epoll.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:04:34 +0900
committerMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:04:34 +0900
commitc918272cc9eb3555d259e22dc587ee01e1c74324 (patch)
treef9b74a454a3066e26b62fcd5df5a89ac267940b1 /src/epoll.cpp
parent35797d6c69032fc9eaa472c501b7fbba8e388026 (diff)
Simplify mechanism for choosing polling mechanism
Till now the selection process was implemented both in autotools build system and in the code itself. From now on, it's exclusively build system's taks to choose the right polling mechanism. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/epoll.cpp')
-rw-r--r--src/epoll.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/epoll.cpp b/src/epoll.cpp
index 83d9b77..37e47d3 100644
--- a/src/epoll.cpp
+++ b/src/epoll.cpp
@@ -20,7 +20,8 @@
*/
#include "epoll.hpp"
-#if defined XS_USE_EPOLL
+
+#if defined XS_HAVE_EPOLL
#include <sys/epoll.h>
#include <stdlib.h>