From 5eeba0fe0da70b7cb1ac17ef0b606058e07c64ea Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Sun, 10 Sep 2017 09:18:54 +0300 Subject: [PATCH] build/meson: require meson >= 0.41.0 With previous versions, the compilation fails with linker errors. Fixes https://github.com/xkbcommon/libxkbcommon/issues/52 Reported-by: @rezso Signed-off-by: Ran Benita --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 452defc..bdd7a83 100644 --- a/meson.build +++ b/meson.build @@ -7,6 +7,7 @@ project( 'warning_level=2', 'b_lundef=true', ], + meson_version : '>= 0.41.0', ) pkgconfig = import('pkgconfig') cc = meson.get_compiler('c') -- 2.7.4