OSDN Git Service

meson: set the minimum version correctly
authorDylan Baker <dylan@pnwbakers.com>
Fri, 12 Jan 2018 19:53:39 +0000 (11:53 -0800)
committerDylan Baker <dylan@pnwbakers.com>
Thu, 25 Jan 2018 18:29:52 +0000 (10:29 -0800)
Currently we ask for 0.42, but we actually require 0.43 because we pass
file objects as arguments to tests. If someone needs version 0.42 it
wouldn't be hard, just a lot of replacing files() with strings.

Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
meson.build

index 0556608..d7a50cf 100644 (file)
@@ -23,7 +23,7 @@ project(
   ['c'],
   version : '2.4.89',
   license : 'MIT',
-  meson_version : '>= 0.42',
+  meson_version : '>= 0.43',
   default_options : ['buildtype=debugoptimized', 'c_std=gnu99'],
 )