From 2457f3d54c900431e97ba40b5440d7c9094d71e3 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 23 Nov 2020 18:02:12 +0000 Subject: [PATCH] build: Bump up the SONAME for GTK4 We released all the 3.9x development snapshots using: libgtk-4.0.so.0.xxxx.y which means that the 4.0.0 release of GTK will have a lower SONAME than the snapshots. To avoid that, bump the SONAME to 1.xxxx.y. Fixes: #3392 --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 26f9b8e780..f4a8e36f03 100644 --- a/meson.build +++ b/meson.build @@ -79,8 +79,8 @@ gtk_binary_version = '4.0.0' gtk_binary_age = 100 * gtk_minor_version + gtk_micro_version -gtk_soversion = '0' -gtk_library_version = '0.@0@.@1@'.format(gtk_binary_age - gtk_interface_age, gtk_interface_age) +gtk_soversion = '1' +gtk_library_version = '1.@0@.@1@'.format(gtk_binary_age - gtk_interface_age, gtk_interface_age) gtk_api_version = '4.0'