diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2013-01-21 00:50:14 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2013-01-27 17:53:56 +0100 |
commit | 2b7c61d605a79206779d2ebb4336b9765f54881c (patch) | |
tree | 7a662d5eb312888e5c1293f5d59d004ff587d36d | |
parent | a860b7cccbed7b52feeb6b37c81d5984ce37baa8 (diff) | |
download | libsigrokdecode-2b7c61d605a79206779d2ebb4336b9765f54881c.tar.gz libsigrokdecode-2b7c61d605a79206779d2ebb4336b9765f54881c.zip |
Update libtool version numbers for libsigrokdecode.
The last release of libsigrokdecode (package version number 0.1.0) had the
initial libtool version numbers (current:revision:age) of 0:0:0.
The upcoming release (0.1.1) is API-compatible with 0.1.0 and can be used
as drop-in replacement. Programs linked against 0.1.0 do not need to
be recompiled or relinked.
As per the libtool guidelines this release only increments the
libtool "revision" number. The new libtool version numbers
(current:revision:age) are thus 0:1:0.
See here for details:
http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ffb6d84..6ced182 100644 --- a/configure.ac +++ b/configure.ac @@ -64,7 +64,7 @@ PKG_PROG_PKG_CONFIG([0.22]) # The algorithm for determining which number to change (and how) is nontrivial! # http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info SRD_LIB_VERSION_CURRENT=0 -SRD_LIB_VERSION_REVISION=0 +SRD_LIB_VERSION_REVISION=1 SRD_LIB_VERSION_AGE=0 SRD_LIB_VERSION="$SRD_LIB_VERSION_CURRENT:$SRD_LIB_VERSION_REVISION:$SRD_LIB_VERSION_AGE" SRD_LIB_LDFLAGS="-version-info $SRD_LIB_VERSION" |