From ad149423002363b2ebd6fb225851febeb4039b1b Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Thu, 20 Nov 2025 13:31:31 -0500 Subject: [PATCH] meson: Fix sysprof-capture-4 dependency The versioning scheme changed in v45.0 (the previous version was 3.48.0). As such, this version check would wrongly accept e.g. 48.0. Fixes: e9341568fa9 ("meson: require sysprof-capture-4 >= 4.49.0") Reviewed-by: Christian Gmeiner Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index a64d518bd4b..211d63e93b6 100644 --- a/meson.build +++ b/meson.build @@ -2214,7 +2214,7 @@ endif with_sysprof = get_option('sysprof') if with_sysprof - dep_sysprof = dependency('sysprof-capture-4', version: '>= 4.49.0') + dep_sysprof = dependency('sysprof-capture-4', version: '>= 49.0') pre_args += '-DHAVE_SYSPROF' endif