diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2014-05-06 23:03:10 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2014-05-06 23:07:15 +0200 |
commit | 60bc3a86d321ed10ec8dd1bb997b680a43cdd3ef (patch) | |
tree | d1c394f11ba2768295f52031020c8b1829858c66 /configure.ac | |
parent | 92682a9977259f32054e839aa4a76028fec9ecda (diff) | |
download | libsigrokdecode-60bc3a86d321ed10ec8dd1bb997b680a43cdd3ef.tar.gz libsigrokdecode-60bc3a86d321ed10ec8dd1bb997b680a43cdd3ef.zip |
configure.ac: Bump libtool/library version from 1:0:0 to 2:0:0.
The libtool current:revision:age numbers change from 1:0: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
libsigrokdecode.so.1.0.0 to libsigrokdecode.so.2.0.0, the SONAME (+symlink)
becomes libsigrokdecode.so.2.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 972ceac..e5232cc 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 -SRD_LIB_VERSION_CURRENT=1 +SRD_LIB_VERSION_CURRENT=2 SRD_LIB_VERSION_REVISION=0 SRD_LIB_VERSION_AGE=0 SRD_LIB_VERSION="$SRD_LIB_VERSION_CURRENT:$SRD_LIB_VERSION_REVISION:$SRD_LIB_VERSION_AGE" |