From 5df936718df62a8d1f696ff0f5fe7984aa35150b Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 12 Jan 2018 11:53:39 -0800 Subject: [PATCH] meson: set the minimum version correctly 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 Reviewed-by: Emil Velikov Reviewed-by: Eric Engestrom --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 05566081..d7a50cf9 100644 --- a/meson.build +++ b/meson.build @@ -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'], )