summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÍñigo Huguet <ihuguet@redhat.com>2024-04-02 16:52:06 +0200
committerÍñigo Huguet <inigohuguet@hotmail.com>2024-04-04 08:13:38 +0000
commit9d9e5bd6c157d57747614beb350f580d51c6ce89 (patch)
tree3d6da857a84a9b82ba20244959ef9258c0e0497c
parentc6a8a5854850a1c082b542bfce8102ffa46d648f (diff)
meson: bump minimum version to 0.51
We were already using some features from 0.49: WARNING: Project specifies a minimum meson_version '>= 0.47.2' but uses features which were added in newer versions: * 0.48.0: {'meson.add_dist_script'} * 0.49.0: {'Calling "add_dist_script" with multiple arguments'} Debian 10 uses meson 0.49.2, but it will get out of support in 2 months so we can start considering it as a too old version. Next oldest meson version used by the distros that we follow is Ubuntu 20.04 with meson 0.53.2. Raise to 0.51 as it is supported by all the distros that we test (except Debian 10) and it contains all the features that we need for the next commits.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index b39b4cf453..df56249a79 100644
--- a/meson.build
+++ b/meson.build
@@ -13,7 +13,7 @@ project(
'c_std=gnu11',
'warning_level=2' # value "2" will add "-Wall" and "-Wextra" to the compiler flags
],
- meson_version: '>= 0.47.2',
+ meson_version: '>= 0.51.0',
)
nm_name = meson.project_name()