The build of DPDK now uses features from version 0.6 of meson, which is greater than the current minimum of 0.57.2. Although these features are non-critical, they do cause warnings to be emitted on build. Increase minimum meson version to 0.61 (== version in Ubuntu 22.04 LTS) to remove these warnings.
Signed-off-by: Bruce Richardson <[email protected]> --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index b01010ffa0..6b8cfa8b2e 100644 --- a/meson.build +++ b/meson.build @@ -10,7 +10,7 @@ project('DPDK', 'c', 'default_library=static', 'warning_level=2', ], - meson_version: '>= 0.57.2' + meson_version: '>= 0.61' # meson_version_windows: '>= 1.5.2' ) -- 2.51.0

