From 01c6fd0a88ac811cecee711be85d3310bf09be67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikl=C4=81vs=20Ko=C4=BCes=C5=86ikovs?= <89q1r14hd@relay.firefox.com> Date: Thu, 6 Jan 2022 09:35:52 +0200 Subject: [PATCH] meson.build: bump Meson minimum version to 0.59.0 When creating a new build directory, Meson prints a warning: WARNING: Project specifies a minimum meson_version '>= 0.56.0' but uses features which were added in newer versions: * 0.59.0: {'unescaped_variables arg in pkgconfig.generate'} Since 0.59.0 was released a while ago and no one has complained so far, it should be reasonable to just bump the minimum version required, rather than try to make it 0.56.0 compliant. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index b1ea32f7a..7221cb776 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('pipewire', ['c' ], version : '0.3.43', license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ], - meson_version : '>= 0.56.0', + meson_version : '>= 0.59.0', default_options : [ 'warning_level=3', 'c_std=gnu99', 'cpp_std=c++17',