From: Uwe Hermann Date: Sun, 20 Jan 2013 23:50:14 +0000 (+0100) Subject: Update libtool version numbers for libsigrokdecode. X-Git-Tag: libsigrokdecode-0.1.1~2 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=2b7c61d605a79206779d2ebb4336b9765f54881c;hp=a860b7cccbed7b52feeb6b37c81d5984ce37baa8 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 --- 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"