From 990a15250a98c52fd440537dc456780aca35f90f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Wed, 9 Feb 2022 21:48:34 +0100 Subject: [PATCH] meson: fcft-3.0.0 is buggy, require 3.0.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fcft-3.0.0 is known to cause crashes. We don’t want anyone ever compiling foot against it. Closes #935 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 81ef4f90..30044f9e 100644 --- a/meson.build +++ b/meson.build @@ -90,7 +90,7 @@ if utf8proc.found() endif tllist = dependency('tllist', version: '>=1.0.4', fallback: 'tllist') -fcft = dependency('fcft', version: ['>=3.0.0', '<4.0.0'], fallback: 'fcft') +fcft = dependency('fcft', version: ['>=3.0.1', '<4.0.0'], fallback: 'fcft') wayland_protocols_datadir = wayland_protocols.get_pkgconfig_variable('pkgdatadir')