From d36a8b1db7d9a5b3d5e3b52c09fe347a0c524b2f Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 29 Feb 2024 11:09:11 +0100 Subject: [PATCH] meson: fix LIBBLKID_VERSION definition Fixes: https://github.com/util-linux/util-linux/issues/2802 Signed-off-by: Karel Zak (cherry picked from commit 311ea4e73b8b35788e1bbc784350082e45e9d445) --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 964c8d912..ce85d91c6 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) -- 2.47.3