From 23be36fc018533924a02aa74638a08144258f79d 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: (cherry picked from commit ad149423002363b2ebd6fb225851febeb4039b1b) --- .pick_status.json | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pick_status.json b/.pick_status.json index 7048ab0f03b..96a242d8f7b 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -4334,7 +4334,7 @@ "description": "meson: Fix sysprof-capture-4 dependency", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "e9341568fa9e4af1084db6702174ed4b4881bc73", "notes": null diff --git a/meson.build b/meson.build index 797023f96eb..672c8132318 100644 --- a/meson.build +++ b/meson.build @@ -2170,7 +2170,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