From fcb3c4108212daba34455502a543559fe5056381 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 28 Dec 2021 17:16:42 -0500 Subject: [PATCH] meson: lower the minimum buildsystem requirements No features of 0.54 are being used, so 0.50 should be perfectly fine. This drops the minimum requirement down to a version available in the latest Ubuntu LTS (20.04), which only has 0.53 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 87544c7f..e1244ac1 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('lite-xl', ['c'], version : '2.0.3', license : 'MIT', - meson_version : '>= 0.54', + meson_version : '>= 0.50', default_options : ['c_std=gnu11'] )