meson: fix dependencies (utf8proc missing in lots of places)

This commit is contained in:
Daniel Eklöf 2025-01-04 10:06:45 +01:00
parent 169471cf23
commit a2960aa457
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -226,7 +226,8 @@ common = static_library(
'debug.c', 'debug.h',
'macros.h',
'xmalloc.c', 'xmalloc.h',
'xsnprintf.c', 'xsnprintf.h'
'xsnprintf.c', 'xsnprintf.h',
dependencies: [utf8proc]
)
misc = static_library(
@ -234,7 +235,9 @@ misc = static_library(
'hsl.c', 'hsl.h',
'macros.h',
'misc.c', 'misc.h',
'uri.c', 'uri.h'
'uri.c', 'uri.h',
dependencies: [utf8proc],
link_with: [common]
)
vtlib = static_library(
@ -268,6 +271,7 @@ pgolib = static_library(
tokenize = static_library(
'tokenizelib',
'tokenize.c',
dependencies: [utf8proc],
link_with: [common],
)
@ -321,7 +325,7 @@ executable(
'macros.h',
'util.h',
version,
dependencies: [tllist],
dependencies: [tllist, utf8proc],
link_with: common,
install: true)