From 85dc45e548f431b3d4ac79a9c42880aae9833af0 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 17 Jun 2019 16:55:24 +0100 Subject: [PATCH] build: Bump up the required version of Meson We cannot bump to the latest stable version of Meson, even if it would make our life easier. We can, though, use the version of Meson shipped by the next, soon to be released Debian stable. --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9313f3a8e..9efc5a52c 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,7 @@ project('glib', 'c', 'cpp', version : '2.61.2', - meson_version : '>= 0.48.0', + # NOTE: We keep this pinned at 0.49 because that's what Debian 10 ships + meson_version : '>= 0.49.2', default_options : [ 'buildtype=debugoptimized', 'warning_level=1',