diff options
| author | Alan Conway <aconway@apache.org> | 2010-06-17 16:55:54 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2010-06-17 16:55:54 +0000 |
| commit | 6491ea5c8eb1c80eb171fb0bcad4d9a9dfb22cb0 (patch) | |
| tree | f8893393a0b686b375836a50a3589122417a0032 /cpp/src/cluster.mk | |
| parent | 504a58d1765c449fe97e306ae8f03699c03c5dae (diff) | |
| download | qpid-python-6491ea5c8eb1c80eb171fb0bcad4d9a9dfb22cb0.tar.gz | |
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/qpid@955672 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/cluster.mk')
| -rw-r--r-- | cpp/src/cluster.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/cluster.mk b/cpp/src/cluster.mk index 2a648e968c..2e4942dfdf 100644 --- a/cpp/src/cluster.mk +++ b/cpp/src/cluster.mk @@ -97,13 +97,15 @@ cluster_la_SOURCES = \ cluster_la_LIBADD= -lcpg $(libcman) libqpidbroker.la libqpidclient.la cluster_la_CXXFLAGS = $(AM_CXXFLAGS) -fno-strict-aliasing -cluster_la_LDFLAGS = $(PLUGINLDFLAGS) +CLUSTER_VERSION_INFO = 2:0:0 +cluster_la_LDFLAGS = $(PLUGINLDFLAGS) -version-info $(CLUSTER_VERSION_INFO) # The watchdog plugin and helper executable dmodule_LTLIBRARIES += watchdog.la watchdog_la_SOURCES = qpid/cluster/WatchDogPlugin.cpp watchdog_la_LIBADD = libqpidbroker.la -watchdog_la_LDFLAGS = $(PLUGINLDFLAGS) +WATCHDOG_VERSION_INFO = 2:0:0 +watchdog_la_LDFLAGS = $(PLUGINLDFLAGS) -version-info $(WATCHDOG_VERSION_INFO) qpidexec_PROGRAMS += qpidd_watchdog qpidd_watchdog_SOURCES = qpid/cluster/qpidd_watchdog.cpp |
