From 88b5e1a219a16dd66be6302dbf88ec93d317f991 Mon Sep 17 00:00:00 2001 From: Povilas Kanapickas Date: Thu, 25 Mar 2021 22:48:55 +0200 Subject: [PATCH] meson: Bump min meson version to 0.47 to get install_mode support --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9a1f05a8a..0f84b9e0a 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project('xserver', 'c', 'c_std=gnu99', ], version: '1.20.99.1', - meson_version: '>= 0.46.0', + meson_version: '>= 0.47.0', ) add_project_arguments('-DHAVE_DIX_CONFIG_H', language: ['c', 'objc']) cc = meson.get_compiler('c')