diff options
author | Alan Conway <aconway@apache.org> | 2007-01-05 19:25:32 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-01-05 19:25:32 +0000 |
commit | 189816d88cc72f1053a7e7685b18883669c53d57 (patch) | |
tree | 882963832877bb25169f78aa8b46dce6eccd2106 /cpp/lib/client | |
parent | 58734262e4739f60eb42bd6ec96e3a4d37405f19 (diff) | |
download | qpid-python-189816d88cc72f1053a7e7685b18883669c53d57.tar.gz |
2007-01-05 Jim Meyering <meyering@redhat.com>
* lib/broker/Makefile.am (libqpidbroker_la_LIBADD): Define, so we
link with libqpidcommon.la.
* lib/client/Makefile.am (libqpidclient_la_LIBADD): Likewise.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@493151 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/client')
-rw-r--r-- | cpp/lib/client/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/lib/client/Makefile.am b/cpp/lib/client/Makefile.am index e4bd5a1151..7aa71c9290 100644 --- a/cpp/lib/client/Makefile.am +++ b/cpp/lib/client/Makefile.am @@ -7,8 +7,9 @@ INCLUDES = \ $(APR_CXXFLAGS) lib_LTLIBRARIES = libqpidclient.la +libqpidclient_la_LIBADD = ../common/libqpidcommon.la libqpidclient_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO_ARG) -libqpidclient_la_SOURCES = \ +libqpidclient_la_SOURCES = \ ClientChannel.cpp \ ClientExchange.cpp \ ClientMessage.cpp \ @@ -19,7 +20,7 @@ libqpidclient_la_SOURCES = \ MessageListener.cpp \ ResponseHandler.cpp \ ReturnedMessageHandler.cpp -pkginclude_HEADERS = \ +pkginclude_HEADERS = \ ClientChannel.h \ ClientExchange.h \ ClientMessage.h \ |