diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2017-06-15 18:01:13 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2017-06-19 09:32:43 +1000 |
commit | 6d27ff38c0d606cee0dd216c0162884bebd8c566 (patch) | |
tree | af33e5af58a26032a571d1c719f73466d5012cf6 | |
parent | 7e571230690cd249811d63988bf4f8846dfe7e2a (diff) |
configure.ac: libinput 1.7.9011.7.901
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | meson.build | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 3aadff02..aaaf1f8e 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.64]) m4_define([libinput_major_version], [1]) m4_define([libinput_minor_version], [7]) -m4_define([libinput_micro_version], [0]) +m4_define([libinput_micro_version], [901]) m4_define([libinput_version], [libinput_major_version.libinput_minor_version.libinput_micro_version]) @@ -36,7 +36,7 @@ AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz]) # 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=22:2:12 +LIBINPUT_LT_VERSION=23:0:13 AC_SUBST(LIBINPUT_LT_VERSION) AM_SILENT_RULES([yes]) diff --git a/meson.build b/meson.build index d86f6c03..9df35341 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libinput', 'c', 'cpp', - version : '1.7.0', + version : '1.7.901', license: 'MIT/Expat', default_options : [ 'c_std=gnu99', 'warning_level=2' ], meson_version : '>= 0.40.0') @@ -14,9 +14,9 @@ libinput_version = meson.project_version().split('.') # 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_c=22 -libinput_lt_r=2 -libinput_lt_a=12 +libinput_lt_c=23 +libinput_lt_r=0 +libinput_lt_a=13 # convert to soname libinput_so_version = '@0@.@1@.@2@'.format((libinput_lt_c - libinput_lt_a), |