From 12f9ec84d93e956f1beabaf1bfc1dd17419564aa Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 17 Feb 2020 16:49:35 +1000 Subject: [PATCH] meson/configure: put a comment in that we don't want to bump the soname We use symbol versioning anyway, so we don't need to bump the soname every time. Signed-off-by: Peter Hutterer --- configure.ac | 10 ++-------- meson.build | 10 ++-------- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/configure.ac b/configure.ac index d4cc1a8..75ee2fb 100644 --- a/configure.ac +++ b/configure.ac @@ -34,14 +34,8 @@ AC_USE_SYSTEM_EXTENSIONS AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz subdir-objects]) -# Before making a release, the LIBEVDEV_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 +# DO NOT MODIFY THIS +# Use symbol versioning instead. LIBEVDEV_LT_VERSION=5:0:3 AC_SUBST(LIBEVDEV_LT_VERSION) diff --git a/meson.build b/meson.build index 158ab38..e7d388c 100644 --- a/meson.build +++ b/meson.build @@ -13,14 +13,8 @@ dir_man1 = join_paths(get_option('prefix'), get_option('mandir'), 'man1') # Include directories includes_include = include_directories('include') -# We use libtool-version numbers because it's easier to understand. -# Before making a release, the libinput_so_* -# numbers should be modified. The components are of the form C:R:A. -# a) If binary compatibility has been broken (eg removed or changed interfaces) -# change to C+1:0:0. -# 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 +# DO NOT MODIFY THIS +# Use symbol versioning instead. libevdev_lt_c=5 libevdev_lt_r=0 libevdev_lt_a=3 -- 2.34.1