From: Uwe Hermann Date: Wed, 1 Jul 2015 21:11:25 +0000 (+0200) Subject: configure.ac: Bump libtool/library version from 2:0:0 to 2:1:0. X-Git-Tag: libsigrokdecode-0.3.1~1 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=a7ad75778a07c52c1a6e8311692d51c8f1c8fd7f;p=libsigrokdecode.git configure.ac: Bump libtool/library version from 2:0:0 to 2:1:0. The libtool current:revision:age numbers change from 2:0:0 to 2:1:0. Details: http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info This changes the library filename (e.g. on Linux) from libsigrokdecode.so.2.0.0 to libsigrokdecode.so.2.0.1, the SONAME (+symlink) stays at libsigrokdecode.so.2, though. --- diff --git a/configure.ac b/configure.ac index d7236f8..c637212 100644 --- a/configure.ac +++ b/configure.ac @@ -67,7 +67,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=2 -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"