Commit 5eeba0fe0da70b7cb1ac17ef0b606058e07c64ea

Ran Benita 2017-09-10T09:18:54

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 <ran234@gmail.com>

1
2
3
4
5
6
7
8
9
10
11
12
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')