Increase meson min version and avoid get_pkgconfig_variable warning (#682)
authorBernd Schubert <bernd.schubert@fastmail.fm>
Mon, 20 Jun 2022 12:58:12 +0000 (14:58 +0200)
committerGitHub <noreply@github.com>
Mon, 20 Jun 2022 12:58:12 +0000 (13:58 +0100)
meson was complaining:

Build targets in project: 27
NOTICE: Future-deprecated features used:
 * 0.56.0: {'Dependency.get_pkgconfig_variable'}

So change to .get_variable(pkgconfig : 'type' and also increase
the meson minimal version to be able to handle it.

Co-authored-by: Bernd Schubert <bschubert@ddn.com>
meson.build
util/meson.build

index 342dee1c1e37cfec5043ba050bcd6ff3e0a95ec8..f7ebe0114799a1c77c5db9f4884623e2360dcadc 100644 (file)
@@ -1,5 +1,5 @@
 project('libfuse3', ['c'], version: '3.11.0',
-        meson_version: '>= 0.42',
+        meson_version: '>= 0.51',
         default_options: [
             'buildtype=debugoptimized',
             'cpp_std=c++11',
index 577668fd5800e8b0511097d49f2ea0bfdfc1a96f..bdbd11cdccf2110232e67177f9bede0991b80bec 100644 (file)
@@ -17,7 +17,7 @@ executable('mount.fuse3', ['mount.fuse.c'],
 udevrulesdir = get_option('udevrulesdir')
 if udevrulesdir == ''
   udev = dependency('udev')
-  udevrulesdir = join_paths(udev.get_pkgconfig_variable('udevdir'), 'rules.d')
+  udevrulesdir = join_paths(udev.get_variable(pkgconfig : 'udevdir'), 'rules.d')
 endif
 
 meson.add_install_script('install_helper.sh',