From ad981930c3c685a595fd7567d9a4b09481446d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 24 Jun 2021 20:16:58 +0200 Subject: [PATCH] meson: add utf8proc dep to all libraries pulling in terminal.h --- meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 33b54c9c..fcf2d64c 100644 --- a/meson.build +++ b/meson.build @@ -165,7 +165,7 @@ pgolib = static_library( 'selection.c', 'selection.h', 'terminal.c', 'terminal.h', wl_proto_src + wl_proto_headers, - dependencies: [libepoll, pixman, fcft, tllist, wayland_client, xkb], + dependencies: [libepoll, pixman, fcft, tllist, wayland_client, xkb, utf8proc], link_with: vtlib, ) @@ -174,7 +174,7 @@ if get_option('b_pgo') == 'generate' 'pgo', 'pgo/pgo.c', wl_proto_src + wl_proto_headers, - dependencies: [math, threads, libepoll, pixman, wayland_client, xkb, fcft, tllist], + dependencies: [math, threads, libepoll, pixman, wayland_client, xkb, utf8proc, fcft, tllist], link_with: pgolib, ) endif @@ -205,7 +205,7 @@ executable( 'user-notification.c', 'user-notification.h', 'wayland.c', 'wayland.h', wl_proto_src + wl_proto_headers, version, - dependencies: [math, threads, libepoll, pixman, wayland_client, wayland_cursor, xkb, fontconfig, + dependencies: [math, threads, libepoll, pixman, wayland_client, wayland_cursor, xkb, fontconfig, utf8proc, tllist, fcft], link_with: pgolib, install: true)