This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: meson: Bump minimum meson version Author: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Date: Wed Oct 30 22:32:36 2024 +0200 v4l-utils sets the minimum meson version to 0.57, but uses features of newer versions: WARNING: Project specifies a minimum meson_version '>= 0.57' but uses features which were added in newer versions: * 0.58.0: {'add_devenv'} * 0.59.0: {'dep 'intl' custom lookup'} * 0.60.0: {'list.<plus>'} All stable versions of major Linux distributions ship a version newer than 0.60, so we can safely bump the minimum requirements. Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=625e604c48fa3c4e9737fa1ec8e1d473a378ca9c diff --git a/meson.build b/meson.build index ce6db73c7014..a8843c8fd025 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('v4l-utils', 'c', 'cpp', version: '1.29.0', - meson_version : '>= 0.57', + meson_version : '>= 0.60', default_options : [ 'buildtype=debugoptimized', 'warning_level=1',