From 360079e78efaa44142458dde329042b97da68a87 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 3 Nov 2013 23:34:21 +0100 Subject: [PATCH] configure.ac: Bump libtool/library version from 1:1:0 to 1:2:0. The libtool current:revision:age numbers change from 1:1:0 to 1:2:0 (i.e., revision is increased) since the library source code has changed, but no interfaces were added or changed or removed. Details: http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info This changes the library filename (e.g. on Linux) from libsigrok.so.1.0.1 to libsigrok.so.1.0.2, but the SONAME (+symlink) remains the same (libsigrok.so.1) since this release is API- and ABI-compatible with the last. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f84d1434..467ebfc8 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 SR_LIB_VERSION_CURRENT=1 -SR_LIB_VERSION_REVISION=1 +SR_LIB_VERSION_REVISION=2 SR_LIB_VERSION_AGE=0 SR_LIB_VERSION="$SR_LIB_VERSION_CURRENT:$SR_LIB_VERSION_REVISION:$SR_LIB_VERSION_AGE" SR_LIB_LDFLAGS="-version-info $SR_LIB_VERSION"