From: Uwe Hermann Date: Tue, 6 May 2014 20:59:00 +0000 (+0200) Subject: configure.ac: Bump libtool/library version from 1:2:0 to 2:0:0. X-Git-Tag: libsigrok-0.3.0~2 X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=85ca913cae0d9514949db8f638ecb4ef7bca706e;p=libsigrok.git configure.ac: Bump libtool/library version from 1:2:0 to 2:0:0. The libtool current:revision:age numbers change from 1:2:0 to 2:0:0. 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.2 to libsigrok.so.2.0.0, the SONAME (+symlink) becomes libsigrok.so.2. --- diff --git a/configure.ac b/configure.ac index 545b8b1f..845ef358 100644 --- a/configure.ac +++ b/configure.ac @@ -67,8 +67,8 @@ PKG_PROG_PKG_CONFIG([0.22]) # Carefully read the libtool docs before updating these numbers! # 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=2 +SR_LIB_VERSION_CURRENT=2 +SR_LIB_VERSION_REVISION=0 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"