From 94ca2d40d08be58168bf05183ffbbe4dcd05bd5d Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 12 Jun 2020 09:32:39 +0200 Subject: [PATCH] build: decrease the minimal needed meson verion to 0.50 When we jumped from 0.47 to 0.52 to fix problems some users have been seeing when building we might jumped a bit to far. We want a good balance between stable and fast building but also mature enough to be in distro releases and widely available. We will try to settle for a middle-ground with 0.50 here. If that causes problems for you building please let us know instantly. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f820761ade..af9e8b031e 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('efl', ['c','cpp'], version: '1.24.99', default_options : ['buildtype=plain', 'cpp_std=c++11'], - meson_version : '>=0.52' + meson_version : '>=0.50' ) if host_machine.system() == 'darwin'