From c4f43b65ed4ffd4db98bf083ea5c7637194944ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 19 Nov 2022 02:16:04 +0100 Subject: [PATCH] build: Replace deprecated meson functions The `dep.get__variable()` methods have been deprecated in favor of the generic `dep.get_variable()` method. Part-of: --- meson.build | 12 ++++++------ src/meson.build | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/meson.build b/meson.build index cbeb83ee5..66a2eb796 100644 --- a/meson.build +++ b/meson.build @@ -224,7 +224,7 @@ if have_libgudev udev_dir = get_option('udev_dir') if udev_dir == '' - udev_dir = udev_dep.get_pkgconfig_variable('udevdir') + udev_dir = udev_dep.get_variable('udevdir') endif endif @@ -515,7 +515,7 @@ cdata.set('HAVE_INTROSPECTION', have_introspection) cdata.set('HAVE_PROFILER', have_profiler) if have_x11_client - xkb_base = xkeyboard_config_dep.get_pkgconfig_variable('xkb_base') + xkb_base = xkeyboard_config_dep.get_variable('xkb_base') cdata.set_quoted('XKB_BASE', xkb_base) endif @@ -532,7 +532,7 @@ if have_xwayland xwayland_path = get_option('xwayland_path') if xwayland_path == '' if xwayland_dep.found() - xwayland_path = xwayland_dep.get_pkgconfig_variable('xwayland') + xwayland_path = xwayland_dep.get_variable('xwayland') else xwayland_path = find_program('Xwayland').path() endif @@ -551,7 +551,7 @@ if have_xwayland # For Xwayland -initfd usage use_initfd = get_option('xwayland_initfd') if xwayland_dep.found() - xwayland_supports_initfd = xwayland_dep.get_pkgconfig_variable('have_initfd') == 'true' + xwayland_supports_initfd = xwayland_dep.get_variable('have_initfd') == 'true' else xwayland_options = run_command(xwayland_path, '-help') xwayland_supports_initfd = xwayland_options.stderr().contains('-initfd') @@ -572,7 +572,7 @@ if have_xwayland # For Xwayland -listenfd usage if xwayland_dep.found() - have_xwayland_listenfd = xwayland_dep.get_pkgconfig_variable('have_listenfd') == 'true' + have_xwayland_listenfd = xwayland_dep.get_variable('have_listenfd') == 'true' endif if (have_xwayland_listenfd) @@ -581,7 +581,7 @@ if have_xwayland # For Xwayland -listenfd usage if xwayland_dep.found() - have_xwayland_terminate_delay = xwayland_dep.get_pkgconfig_variable('have_terminate_delay') == 'true' + have_xwayland_terminate_delay = xwayland_dep.get_variable('have_terminate_delay') == 'true' endif if (have_xwayland_terminate_delay) diff --git a/src/meson.build b/src/meson.build index 6790efa16..063c06b02 100644 --- a/src/meson.build +++ b/src/meson.build @@ -882,7 +882,7 @@ if have_profiler ] if sysprof_dep.type_name() == 'pkgconfig' - sysprof_dbus_interfaces_dir = join_paths(sysprof_dep.get_pkgconfig_variable('datadir'), 'dbus-1', 'interfaces') + sysprof_dbus_interfaces_dir = join_paths(sysprof_dep.get_variable('datadir'), 'dbus-1', 'interfaces') else sysprof_dbus_interfaces_dir = join_paths(mutter_srcdir, 'subprojects', 'sysprof', 'src') endif @@ -980,14 +980,14 @@ if have_wayland ['xwayland-keyboard-grab', 'unstable', 'v1', ], ] if have_wayland_eglstream - wayland_eglstream_protocols_dir = wayland_eglstream_protocols_dep.get_pkgconfig_variable('pkgdatadir') + wayland_eglstream_protocols_dir = wayland_eglstream_protocols_dep.get_variable('pkgdatadir') wayland_protocols += [ ['wayland-eglstream-controller', 'third-party', wayland_eglstream_protocols_dir], ] endif wayland_scanner = find_program('wayland-scanner') - protocols_dir = wayland_protocols_dep.get_pkgconfig_variable('pkgdatadir') + protocols_dir = wayland_protocols_dep.get_variable('pkgdatadir') assert(protocols_dir != '', 'Could not get pkgdatadir from wayland-protocols.pc') foreach p: wayland_protocols