stefan pushed a commit to branch efl-1.24. http://git.enlightenment.org/core/efl.git/commit/?id=c7c5b49465dcd1b7209ae59e15a7b9e363ffdd5f
commit c7c5b49465dcd1b7209ae59e15a7b9e363ffdd5f Author: Stefan Schmidt <s.schm...@samsung.com> Date: Tue Jun 23 11:53:11 2020 +0200 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' --