From 96e682f128a67b633ba4783a722b8972879139ce Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Sequoia <jeremyhu@apple.com> Date: Mon, 20 Jun 2022 20:34:32 -0700 Subject: [PATCH] meson: Bump requirement to meson-0.52.0 Bumped in response to warning from meson: WARNING: Project specifies a minimum meson_version '>= 0.47.0' but uses features which were added in newer versions: * 0.50.0: {'install arg in configure_file'} Even though there is no warning, we need 0.52.0 for include_type (added in 8264b51e8e8b4c193dc8324cae4f9f675cfbf172) per: https://mesonbuild.com/Reference-manual_functions.html#arguments17 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7bcec7d4e8..0b129cc80f 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project('xserver', 'c', 'c_std=gnu99', ], version: '21.1.99.1', - meson_version: '>= 0.47.0', + meson_version: '>= 0.52.0', ) release_date = '2021-07-05' -- GitLab