From 2bc2c756906232e5182cdf0de96840661688297b Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 7 Jun 2007 14:29:24 +0000 Subject: Build support for clustering, initial CPG wrapper & tests. - src/qpid/cluster/Cpg.cpp: C++ wrapper for the openais CPG library. - src/tests/unit/Cpg.cpp: verify CPG functions in make check. - makefiles etc.: build cluster stuff only if openais is installed. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@545190 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/Makefile.am | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) (limited to 'qpid/cpp/src/Makefile.am') diff --git a/qpid/cpp/src/Makefile.am b/qpid/cpp/src/Makefile.am index abc081a6a5..02044be01b 100644 --- a/qpid/cpp/src/Makefile.am +++ b/qpid/cpp/src/Makefile.am @@ -103,6 +103,10 @@ endif lib_LTLIBRARIES = libqpidcommon.la libqpidbroker.la libqpidclient.la +if CLUSTER +include cluster.mk +endif + # The logger library uses boost::date_time to format time. # We have to disable the unused parameters warning to get around # unused parameters in boost::date_time headers. So we build it @@ -209,16 +213,16 @@ libqpidbroker_la_SOURCES = \ libqpidclient_la_LIBADD = libqpidcommon.la libqpidclient_la_SOURCES = \ - qpid/client/ClientConnection.cpp \ - qpid/client/ClientChannel.cpp \ - qpid/client/ClientExchange.cpp \ - qpid/client/ClientQueue.cpp \ - qpid/client/BasicMessageChannel.cpp \ - qpid/client/MessageMessageChannel.cpp \ - qpid/client/Connector.cpp \ - qpid/client/IncomingMessage.cpp \ - qpid/client/MessageListener.cpp \ - qpid/client/ResponseHandler.cpp \ + qpid/client/ClientConnection.cpp \ + qpid/client/ClientChannel.cpp \ + qpid/client/ClientExchange.cpp \ + qpid/client/ClientQueue.cpp \ + qpid/client/BasicMessageChannel.cpp \ + qpid/client/MessageMessageChannel.cpp \ + qpid/client/Connector.cpp \ + qpid/client/IncomingMessage.cpp \ + qpid/client/MessageListener.cpp \ + qpid/client/ResponseHandler.cpp \ qpid/client/ReturnedMessageHandler.cpp nobase_include_HEADERS = \ -- cgit v1.2.1