Author: kpvdr
Date: 2010-06-17 14:58:04 -0400 (Thu, 17 Jun 2010)
New Revision: 4034
Modified:
store/trunk/cpp/configure.ac
store/trunk/cpp/lib/Makefile.am
Log:
Added variable MSGSTORE_VERSION_INFO to control msgstore.so.x.x.x lib version numbers
Modified: store/trunk/cpp/configure.ac
===================================================================
--- store/trunk/cpp/configure.ac 2010-06-17 17:35:12 UTC (rev 4033)
+++ store/trunk/cpp/configure.ac 2010-06-17 18:58:04 UTC (rev 4034)
@@ -21,7 +21,7 @@
dnl
dnl Process this file with autoconf to produce a configure script.
-AC_INIT([msg-store], [0.6], [rhemrg-users-list(a)redhat.com])
+AC_INIT([msg-store], [0.7], [rhemrg-users-list(a)redhat.com])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([dist-bzip2])
@@ -201,13 +201,6 @@
fi
AC_SUBST(DB_CXX_HEADER_PREFIX)
-# Set the argument to be used in "libtool -version-info ARG".
-QPID_CURRENT=1
-QPID_REVISION=0
-QPID_AGE=1
-LIBTOOL_VERSION_INFO_ARG=$QPID_CURRENT:$QPID_REVISION:$QPID_AGE
-AC_SUBST(LIBTOOL_VERSION_INFO_ARG)
-
gl_CLOCK_TIME
# We use valgrind for the tests. See if it's available.
Modified: store/trunk/cpp/lib/Makefile.am
===================================================================
--- store/trunk/cpp/lib/Makefile.am 2010-06-17 17:35:12 UTC (rev 4033)
+++ store/trunk/cpp/lib/Makefile.am 2010-06-17 18:58:04 UTC (rev 4034)
@@ -34,8 +34,10 @@
$(LIB_CLOCK_GETTIME) \
$(QPID_LIBS)
-msgstore_la_LDFLAGS = \
- $(PLUGINLDFLAGS)
+MSGSTORE_VERSION_INFO = 1:0:0
+msgstore_la_LDFLAGS = \
+ $(PLUGINLDFLAGS) \
+ -version-info $(MSGSTORE_VERSION_INFO)
msgstore_la_SOURCES = \
StorePlugin.cpp \