summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2022-08-17 17:54:00 -0400
committerCorentin Noël <tintou@noel.tf>2022-09-04 16:27:34 +0000
commit165649df5663f207d8553d10941f93b913f7741a (patch)
treedeac63ddede22a81e6cc6c685ff542168a1424bf
parentf510efa133b55080f809dedcd168101658a27d0d (diff)
downloadlibgnomekbd-165649df5663f207d8553d10941f93b913f7741a.tar.gz
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.
-rw-r--r--libgnomekbd/meson.build8
1 files 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
+)