[libgnomekbd] meson: Install libgnomekbd{,ui}.so.8



commit 165649df5663f207d8553d10941f93b913f7741a
Author: Matt Turner <mattst88 gmail com>
Date:   Wed Aug 17 17:54:00 2022 -0400

    meson: Install libgnomekbd{,ui}.so.8
    
    Previously, the meson build system would install:
    
     - libgnomekbd.so.3.28.0 with symlinks from
       - libgnomekbd.so.8.0.0
       - libgnomekbd.so
    
    This didn't match the autotools build system, which installed:
    
     - libgnomekbd.so.8.0.0 with symlinks from
       - libgnomekbd.so.8
       - libgnomekbd.so
    
    The ABI didn't change between v3.26.1 (which only had autotools) and
    v3.28.0, so I don't think we should install .so.3.28.0 shared objects.
    
    This change makes meson install the same shared objects and symlinks as
    autotools.

 libgnomekbd/meson.build | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)
---
diff --git a/libgnomekbd/meson.build b/libgnomekbd/meson.build
index 4e8f3fa..f98c67e 100644
--- a/libgnomekbd/meson.build
+++ b/libgnomekbd/meson.build
@@ -61,8 +61,7 @@ libgnomekbd_lib = library(
   config_h,
   dependencies: libgnomekbd_deps,
   include_directories: root_include,
-  version: meson.project_version(),
-  soversion: library_version,
+  version: library_version,
   install: true,
 )
 
@@ -115,8 +114,7 @@ libgnomekbdui_lib = library(
   gkbd_keyboard_drawing_marshal,
   dependencies: libgnomekbdui_deps,
   include_directories: root_include,
-  version: meson.project_version(),
-  soversion: library_version,
+  version: library_version,
   c_args: [
     '-DUIDIR="@0@"'.format(ui_dir),
     '-DDATADIR="@0@"'.format(pkg_data_dir),
@@ -187,4 +185,4 @@ gnome.generate_gir(
   namespace: 'Gkbd',
   nsversion: '3.0',
   includes: ['GObject-2.0', 'Gtk-3.0', 'xlib-2.0', 'Xkl-1.0'],
-)
\ No newline at end of file
+)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]