From 310c5301c60e67c8d7dc1943d65ea51bd8ca5cd2 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 27 May 2018 21:21:15 +0200 Subject: [PATCH] meson/win32: set LT_CURRENT_MINUS_AGE, it's used by the .rc.in files This fixes the various warnings during meson configure on Windows about LT_CURRENT_MINUS_AGE not being present in the config data. --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index 62989bedd..0ed0bfbba 100644 --- a/meson.build +++ b/meson.build @@ -108,6 +108,9 @@ glib_conf.set('includedir', glib_includedir) glib_conf.set('datadir', glib_datadir) glib_conf.set('datarootdir', glib_datadir) +# used by the .rc.in files +glibconfig_conf.set('LT_CURRENT_MINUS_AGE', soversion) + glib_conf.set('_GNU_SOURCE', 1) if host_system == 'windows'