diff mbox series

[v4l-utils] meson: Bump minimum meson version

Message ID 20241030203730.28241-1-laurent.pinchart@ideasonboard.com
State New
Headers show
Series [v4l-utils] meson: Bump minimum meson version | expand

Commit Message

Laurent Pinchart Oct. 30, 2024, 8:37 p.m. UTC
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.pinchart@ideasonboard.com>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: b79e00a74fde35d0c0bb801b78b15664d3f10309
diff mbox series

Patch

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',