summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2015-03-04 09:27:37 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2015-03-09 14:09:02 +1000
commit11cec1685206efe02f6146cde15496d3dceab448 (patch)
treeece23064d65b9628838cb017bc11479889ef6222
parent3cfa93e58d4b40282c8d486e50050fd2926f84e6 (diff)
configure.ac: libinput 0.12.00.12.0
And update the LT version instructions to not bump the soname in the future. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--configure.ac13
1 files changed, 7 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index e4b7df03..ed0945e0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
AC_PREREQ([2.64])
m4_define([libinput_major_version], [0])
-m4_define([libinput_minor_version], [11])
+m4_define([libinput_minor_version], [12])
m4_define([libinput_micro_version], [0])
m4_define([libinput_version],
[libinput_major_version.libinput_minor_version.libinput_micro_version])
@@ -25,11 +25,12 @@ AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz])
# Before making a release, the LIBINPUT_LT_VERSION string should be
# modified.
# The string is of the form C:R:A.
-# - If interfaces have been changed or added, but binary compatibility has
-# been preserved, change to C+1:0:A+1
-# - If binary compatibility has been broken (eg removed or changed interfaces)
-# change to C+1:0:0
-# - If the interface is the same as the previous version, change to C:R+1:A
+# a) If binary compatibility has been broken (eg removed or changed interfaces)
+# change to C+1:0:0. DO NOT DO THIS! Use symbol versioning instead and
+# do b) instead.
+# b) If interfaces have been changed or added, but binary compatibility has
+# been preserved, change to C+1:0:A+1
+# c) If the interface is the same as the previous version, change to C:R+1:A
LIBINPUT_LT_VERSION=10:0:0
AC_SUBST(LIBINPUT_LT_VERSION)