summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Rousseau <ludovic.rousseau@free.fr>2019-08-08 00:13:17 +0200
committerNathan Hjelm <hjelmn@cs.unm.edu>2019-08-09 00:37:17 -0700
commit767eafbf7f93a22ba8d33e77afb11469da597405 (patch)
treedd50b01354328eb3d486341e07a5c09eedd04553
parentdb99ef3451cdd9372162fb29a1254b3b7bc06cce (diff)
downloadlibusb-767eafbf7f93a22ba8d33e77afb11469da597405.tar.gz
Unix: fix library version for next release
https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html says: 4. If any interfaces have been added, removed, or changed since the last update, increment current, and set revision to 0. 5. If any interfaces have been added since the last public release, then increment age. So both current and age must be incremented. The patch in fde20bb9b7cba0ea6e96db920d0a0169c361ca92 was not complete. Signed-off-by: Ludovic Rousseau <ludovic.rousseau@free.fr>
-rw-r--r--configure.ac2
-rw-r--r--libusb/version_nano.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 76f67d9..da8a158 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@ AC_INIT([libusb],[LIBUSB_MAJOR[.]LIBUSB_MINOR[.]LIBUSB_MICRO[]LIBUSB_RC],[libusb
# http://sourceware.org/autobook/autobook/autobook_91.html
lt_current=2
lt_revision=0
-lt_age=1
+lt_age=2
LTLDFLAGS="-version-info ${lt_current}:${lt_revision}:${lt_age}"
AM_INIT_AUTOMAKE
diff --git a/libusb/version_nano.h b/libusb/version_nano.h
index b4336b6..d7f210e 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 11377
+#define LIBUSB_NANO 11378