From e8c5032ddb47ad743e7e2dbc51ad888ffff2d911 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Thu, 6 Apr 2017 12:13:03 +0300 Subject: [PATCH] Update shared libraries version info to differentiate against v7.4 There are no API changes in libcord and libgccpp against release-7_4 but some implementation changes exist, 3:*:* version info is reserved for release-7_4, so the version info for libcord and libgccpp is now 4:0:3. There some API changes in libgc against release-7_4, so the "current" number of the version info is incremented, thus the full version info is now 4:0:2. * Makefile.am (LIBGC_VER_INFO): Change version info to 4:0:2 (release-7_4 is supposed to use 3:x:1). * Makefile.am (LIBGCCPP_VER_INFO): Change version info to 4:0:3 (release-7_4 is supposed to use 3:x:2). * cord/cord.am (LIBCORD_VER_INFO): Likewise. --- Makefile.am | 4 ++-- cord/cord.am | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 689e0bf8..e4fc9006 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,8 +14,8 @@ # Info (current:revision:age) for the Libtool versioning system. # These numbers should be updated at most once just before the release, # and, optionally, at most once during the development (after the release). -LIBGC_VER_INFO = 1:3:0 -LIBGCCPP_VER_INFO = 1:3:0 +LIBGC_VER_INFO = 4:0:2 +LIBGCCPP_VER_INFO = 4:0:3 ## FIXME: `make distcheck' in this directory will not currently work. ## This is most likely to the explicit flags passed to submakes. diff --git a/cord/cord.am b/cord/cord.am index d05a9458..b8794c29 100644 --- a/cord/cord.am +++ b/cord/cord.am @@ -3,7 +3,7 @@ # Info (current:revision:age) for the Libtool versioning system. # These numbers should be updated at most once just before the release, # and, optionally, at most once during the development (after the release). -LIBCORD_VER_INFO = 1:3:0 +LIBCORD_VER_INFO = 4:0:3 lib_LTLIBRARIES += libcord.la -- 2.40.0