]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
meson: declare the minimum required version of meson itself
authorEli Schwartz <eschwartz@archlinux.org>
Wed, 13 Apr 2022 01:25:01 +0000 (21:25 -0400)
committerEli Schwartz <eschwartz@archlinux.org>
Wed, 13 Apr 2022 01:47:58 +0000 (21:47 -0400)
Features from Meson 0.53.0 are used, so declare this as required to
prevent people from trying to use older versions and getting strange
errors. Instead, Meson will tell them they need that version.

meson.build

index 0642ab5996c0c5ad712cfcbe8fbca06983644e4b..06c89b53e4b2eb68e6236c38a3f95f6026318fef 100644 (file)
@@ -1,5 +1,6 @@
 project('util-linux', 'c',
         version : '2.37',
+        meson_version: '>=0.53.0',
         license : 'GPLv2+')
 
 pkgconfig = import('pkgconfig')