summaryrefslogtreecommitdiff
path: root/cpp/src/Makefile.am
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2008-07-30 06:29:51 +0000
committerAndrew Stitcher <astitcher@apache.org>2008-07-30 06:29:51 +0000
commit7166856e59dde9d6590d8abe54f0deb73b751282 (patch)
treee236a06e12ad2c89ddba6b38749afdb04c8eb6c5 /cpp/src/Makefile.am
parentf1f80e7b3b1e17e663113382219d992680461063 (diff)
downloadqpid-python-7166856e59dde9d6590d8abe54f0deb73b751282.tar.gz
QPID-1198: Solaris ECF (port) based Poller
Patch from Manuel Teira git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@680921 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/Makefile.am')
-rw-r--r--cpp/src/Makefile.am11
1 files changed, 9 insertions, 2 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am
index 592ccf8a76..445f5eae0d 100644
--- a/cpp/src/Makefile.am
+++ b/cpp/src/Makefile.am
@@ -70,7 +70,6 @@ sbin_PROGRAMS = qpidd
qpidd_SOURCES = qpidd.cpp
posix_plat_src = \
- qpid/sys/epoll/EpollPoller.cpp \
qpid/sys/posix/IOHandle.cpp \
qpid/sys/posix/Socket.cpp \
qpid/sys/posix/AsynchIO.cpp \
@@ -90,7 +89,15 @@ posix_plat_hdr = \
qpid/sys/posix/Fork.h \
qpid/sys/posix/LockFile.h
-platform_src = $(posix_plat_src)
+if HAVE_EPOLL
+ poller = qpid/sys/epoll/EpollPoller.cpp
+endif
+
+if HAVE_ECF
+ poller = qpid/sys/solaris/ECFPoller.cpp
+endif
+
+platform_src = $(posix_plat_src) $(poller)
platform_hdr = $(posix_plat_hdr)
lib_LTLIBRARIES = libqpidcommon.la libqpidbroker.la libqpidclient.la