From fe11617a8fcd6d767ec314e846d2dd1605cddec7 Mon Sep 17 00:00:00 2001 From: Jehan Date: Sun, 14 Dec 2025 22:59:03 +0100 Subject: [PATCH] meson: fix babl's requirement. In commit 44ba2219fb, the sanity check version was bumped, but not the meson check! --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9918c4bbb6..625de7bc8d 100644 --- a/meson.build +++ b/meson.build @@ -434,7 +434,7 @@ mscms = platform_windows ? cc.find_library('mscms') : no_dep atk_minver = '2.4.0' atk = dependency('atk', version: '>='+atk_minver) -babl_minver = '0.1.116' +babl_minver = '0.1.118' babl = dependency('babl-0.1', version: '>='+babl_minver) # TODO: we want to bump to Cairo 1.17.2 when possible in order to use # CAIRO_FORMAT_RGBA128F unconditionally. At time of writing, it's not possible