summaryrefslogtreecommitdiff
path: root/cpp/src/Makefile.am
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2012-02-21 22:44:03 +0000
committerAndrew Stitcher <astitcher@apache.org>2012-02-21 22:44:03 +0000
commit29a4fcd0119a165a5fefba36f0c851076e732e3a (patch)
treecb957b555e816115f44de95d1df430a5b1fdd221 /cpp/src/Makefile.am
parentc135ce0a3a523d6cb95ad68623b7ec6a230aab4e (diff)
downloadqpid-python-29a4fcd0119a165a5fefba36f0c851076e732e3a.tar.gz
QPID-3571: A generic Posix poller implementation
Wired manual selection of poll/epoll implementations into autoconf/cmake. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1292066 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/Makefile.am')
-rw-r--r--cpp/src/Makefile.am8
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am
index a909ed8185..a954f28577 100644
--- a/cpp/src/Makefile.am
+++ b/cpp/src/Makefile.am
@@ -183,11 +183,15 @@ nobase_include_HEADERS += \
../include/qpid/sys/posix/Time.h \
../include/qpid/sys/posix/check.h
-if HAVE_EPOLL
+if USE_EPOLL
poller = qpid/sys/epoll/EpollPoller.cpp
endif
-if HAVE_ECF
+if USE_POLL
+ poller = qpid/sys/posix/PosixPoller.cpp
+endif
+
+if USE_ECF
poller = qpid/sys/solaris/ECFPoller.cpp
endif