From: Karel Zak Date: Thu, 29 Feb 2024 10:09:11 +0000 (+0100) Subject: meson: fix LIBBLKID_VERSION definition X-Git-Tag: v2.42-start~501 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=311ea4e73b8b35788e1bbc784350082e45e9d445;p=thirdparty%2Futil-linux.git meson: fix LIBBLKID_VERSION definition Fixes: https://github.com/util-linux/util-linux/issues/2802 Signed-off-by: Karel Zak --- diff --git a/meson.build b/meson.build index 2b84f9a88..f7baab7a2 100644 --- a/meson.build +++ b/meson.build @@ -10,6 +10,8 @@ project('util-linux', 'c', fs = import('fs') pkgconfig = import('pkgconfig') +# soname versions; This never change because we use symbols versioing. There is also +# API version (LIB*_VERSION macros) and it follow package version. libblkid_version = '1.1.0' libblkid_date = '01-Jun-2021' libuuid_version = '1.3.0' @@ -56,7 +58,7 @@ endif pc_version = '.'.join(pc_version) -conf.set_quoted('LIBBLKID_VERSION', libblkid_version) +conf.set_quoted('LIBBLKID_VERSION', pc_version) conf.set_quoted('LIBBLKID_DATE', libblkid_date) conf.set('bindir', bindir)