diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2009-08-13 02:35:05 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2009-08-13 02:35:05 +0000 |
commit | b96177f8eec44b30dd3adc980d3680f2577f020b (patch) | |
tree | 581776e67a1cd313eb22463e51120c292a70091b | |
parent | 8e2e27a15cdde8b558f96b511bdd0207e721b374 (diff) |
added -version-info to libtool.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2214 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | libsylph/Makefile.am | 1 | ||||
-rw-r--r-- | src/Makefile.am | 1 |
4 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2009-08-13 + + * libsylph/Makefile.am + src/Makefile.am + configure.in: added -version-info to libtool. + 2009-08-12 * src/export.c: don't overwrite existing file. diff --git a/configure.in b/configure.in index b5411f49..df9b2c28 100644 --- a/configure.in +++ b/configure.in @@ -7,8 +7,8 @@ dnl version number MAJOR_VERSION=2 MINOR_VERSION=7 MICRO_VERSION=1 -INTERFACE_AGE=0 -BINARY_AGE=0 +INTERFACE_AGE=1 +BINARY_AGE=1 EXTRA_VERSION= BUILD_REVISION=0 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION diff --git a/libsylph/Makefile.am b/libsylph/Makefile.am index eecc144b..aef0e3cb 100644 --- a/libsylph/Makefile.am +++ b/libsylph/Makefile.am @@ -102,6 +102,7 @@ export_symbols = -export-symbols libsylph-0.def endif libsylph_0_la_LDFLAGS = \ + -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ -export-dynamic $(no_undefined) $(export_symbols) libsylph_0_la_LIBADD = $(GLIB_LIBS) diff --git a/src/Makefile.am b/src/Makefile.am index bfe67d2d..6bf376bd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -117,6 +117,7 @@ export_symbols = -export-symbols libsylpheed-plugin-0.def endif libsylpheed_plugin_0_la_LDFLAGS = \ + -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ -export-dynamic $(no_undefined) $(export_symbols) libsylpheed_plugin_0_la_LIBADD = \ |