From c7c5b49465dcd1b7209ae59e15a7b9e363ffdd5f Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 23 Jun 2020 11:53:11 +0200 Subject: [PATCH] build: bump minimum meson version to 0.50 We have seen a few build problems from users with version 0.49 (default in Debian stable, backports has an update). We bumped this in master already, but people keep running into it in our stable branch as well. [Instead of backporting the various version changing commits from master this is a stable branch only patch with the same result] --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9a2bb2abc1..35e6a5fecc 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('efl', ['c','cpp'], version: '1.24.3', default_options : ['buildtype=release', 'cpp_std=c++11'], - meson_version : '>=0.47' + meson_version : '>=0.50' ) if host_machine.system() == 'darwin'