From 98528da5e5d3715b2778b3a1dd643fdd6dc051e3 Mon Sep 17 00:00:00 2001 From: Vivian Szczepanski Date: Sat, 8 Apr 2023 10:58:27 -0400 Subject: [PATCH] meson: bump tllist dependency version to 1.1.0 The tll_sort() macro was added to tllist in version 1.1.0, and so building with a previous version causes a linking error. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 6e7e7fcf..a6892cc4 100644 --- a/meson.build +++ b/meson.build @@ -110,7 +110,7 @@ if utf8proc.found() add_project_arguments('-DFOOT_GRAPHEME_CLUSTERING=1', language: 'c') endif -tllist = dependency('tllist', version: '>=1.0.4', fallback: 'tllist') +tllist = dependency('tllist', version: '>=1.1.0', fallback: 'tllist') fcft = dependency('fcft', version: ['>=3.0.1', '<4.0.0'], fallback: 'fcft') wayland_protocols_datadir = wayland_protocols.get_variable('pkgdatadir')