From: Eli Schwartz Date: Wed, 13 Apr 2022 01:25:01 +0000 (-0400) Subject: meson: declare the minimum required version of meson itself X-Git-Tag: v2.39-rc1~715 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=97074bf1c4ebff26c69ed9ae2140b0a4c3068ee8;p=thirdparty%2Futil-linux.git meson: declare the minimum required version of meson itself 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. --- diff --git a/meson.build b/meson.build index 0642ab5996..06c89b53e4 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,6 @@ project('util-linux', 'c', version : '2.37', + meson_version: '>=0.53.0', license : 'GPLv2+') pkgconfig = import('pkgconfig')