From 062583ed58ad9ebe036059c1646770c1fa21f503 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Tue, 14 Jan 2020 16:28:56 +1000 Subject: [PATCH] Bump meson version to 0.51.2 There was an issue in 0.51.1 and earlier, where lists of dependencies and disablers weren't acting like they should. Instead of disabling a build, it would error out instead. Changing this logic to work around it is annoying, so just bump the version instead. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 14ec7fa5..dc031c2a 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'c', version: '0.9.1', license: 'MIT', - meson_version: '>=0.51.0', + meson_version: '>=0.51.2', default_options: [ 'c_std=c11', 'warning_level=2',