From: Uwe Hermann Date: Sat, 4 May 2013 13:12:20 +0000 (+0200) Subject: Fix libsigrok lib version (current:revision:age). X-Git-Tag: dsupstream~4 X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=6941f84568b0e362decdc25e6aecaf304dc670bb;p=libsigrok.git Fix libsigrok lib version (current:revision:age). The last release (libsigrok 0.1.1) had a lib version of 0:0:0. This release thus gets 1:0:0 according to the libtool manual guidelines. --- diff --git a/configure.ac b/configure.ac index 26beda6c..e475f6fd 100644 --- a/configure.ac +++ b/configure.ac @@ -66,7 +66,7 @@ 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=2 +SR_LIB_VERSION_CURRENT=1 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"