From 53f5cdfff822b048189946e99a8b2ba915cce5e8 Mon Sep 17 00:00:00 2001 From: Rick Calixte <10281587+rcalixte@users.noreply.github.com> Date: Mon, 2 Oct 2023 13:11:34 -0400 Subject: [PATCH] Fix meson.build deprecations up to 0.56.0 (#318) --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 3b24542..6fd5855 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('cinnamon-control-center', 'c', version: '5.8.2', - meson_version: '>=0.49.0', + meson_version: '>=0.56.0', ) i18n = import('i18n') @@ -46,7 +46,7 @@ config.set('HAVE_X11_EXTENSIONS_XKB_H', cc.has_header('X11/extensions/XKB.h')) # This is a hard-dependency for the region and user-accounts panels isocodes = dependency('iso-codes') -config.set_quoted('ISO_CODES_PREFIX', isocodes.get_pkgconfig_variable('prefix')) +config.set_quoted('ISO_CODES_PREFIX', isocodes.get_variable(pkgconfig: 'prefix')) ############################################################################### # Network Manager stuff