From 263a799bbda52b09d1120d42abd8ce12d8fec66f Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 17 Jun 2010 16:55:54 +0000 Subject: Allow libraries to be independently versioned in the autotools build. Each library libfoo or plugin foo has a variable FOO_VERSION_INFO with a value passed as -version-info to libtool. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@955672 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/replication.mk | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'qpid/cpp/src/replication.mk') diff --git a/qpid/cpp/src/replication.mk b/qpid/cpp/src/replication.mk index 4a51fb9c7d..e27920d2ee 100644 --- a/qpid/cpp/src/replication.mk +++ b/qpid/cpp/src/replication.mk @@ -33,7 +33,10 @@ if SUNOS replicating_listener_la_LIBADD += libqpidcommon.la -lboost_program_options -luuid $(SUNCC_RUNTIME_LIBS) endif -replicating_listener_la_LDFLAGS = $(PLUGINLDFLAGS) +# Library Version Information: +REPLICATING_LISTENER_VERSION_INFO = 2:0:0 +replicating_listener_la_LDFLAGS = $(PLUGINLDFLAGS) \ + -version-info $(REPLICATING_LISTENER_VERSION_INFO) # a custom exchange plugin that allows an exchange to be created that # can process the messages from a replication queue (populated on the @@ -49,4 +52,8 @@ replication_exchange_la_LIBADD = libqpidbroker.la if SUNOS replication_exchange_la_LIBADD += libqpidcommon.la -lboost_program_options $(SUNCC_RUNTIME_LIBS) -luuid endif -replication_exchange_la_LDFLAGS = $(PLUGINLDFLAGS) +# Library Version Information: +REPLICATION_EXCHANGE_VERSION_INFO = 2:0:0 +replication_exchange_la_LDFLAGS = $(PLUGINLDFLAGS) \ + -version-info $(REPLICATION_EXCHANGE_VERSION_INFO) + -- cgit v1.2.1