buuld: Fix deprecated features since 0.56

Now the the minimum is 0.59, silence some warning in Meson:

dependency.get_pkgconfig_variable becomes
depenency.get_variable(pkgconfig: 'var_name')
executable(gui_app = true) becomes
executable(win_subsystem = 'windows')

Signed-off-by: Christopher Byrne <salah.coronya@gmail.com>
This commit is contained in:
Christopher Byrne
2026-09-07 20:41:14 -05:00
parent 5018a3a848
commit 040021ee0e
2 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ if system == 'linux' or system == 'gnu' or system.startswith('gnu/') or system =
sysinfo_cargs += '-DHAVE_LIBPCI'
sysinfo_sources += 'unix/pci.c'
picidsdir = libpci.get_pkgconfig_variable('idsdir')
picidsdir = libpci.get_variable(pkgconfig : 'idsdir')
pciids = join_paths(picidsdir, 'pci.ids')
sysinfo_cargs += '-DPCIIDS_FILE="@0@"'.format(pciids)
endif

View File

@@ -107,7 +107,7 @@ zoitechat_theme_lib = static_library('zoitechat_theme',
iso_codes = dependency('iso-codes', required: false)
if iso_codes.found()
zoitechat_gtk_sources += 'sexy-iso-codes.c'
iso_codes_prefix = iso_codes.get_pkgconfig_variable('prefix')
iso_codes_prefix = iso_codes.get_variable(pkgconfig : 'prefix')
zoitechat_gtk_cflags += '-DISO_CODES_PREFIX="@0@"'.format(iso_codes_prefix)
zoitechat_gtk_cflags += '-DISO_CODES_LOCALEDIR="@0@"'.format(
join_paths(iso_codes_prefix, 'share/locale'))
@@ -136,7 +136,7 @@ executable('zoitechat',
link_args: zoitechat_gtk_ldflags,
pie: true,
install: true,
gui_app: true,
win_subsystem: 'windows',
)
theme_manager_policy_tests = executable('theme_manager_policy_tests',