From 9e1c2056cfe4bae5b91d661d60d26081a9ca9000 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Thu, 18 May 2023 10:23:25 +0300 Subject: [PATCH] tests/meson.build: Add missing dependency for xcb-client-helper This fixes the following build issue: [ 6s] cc -Itests/libtest-xwayland-client.a.p -Itests -I../tests -I. -I.. -Iinclude -I../include -Iprotocol -I/usr/include/pixman-1 -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -Wpedantic -std=gnu99 -Wmissing-prototypes -Wno-unused-parameter -Wno-shift-negative-value -Wno-missing-field-initializers -Wno-pedantic -Wundef -fvisibility=hidden -O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto -g -fPIC -MD -MQ tests/libtest-xwayland-client.a.p/xcb-client-helper.c.o -MF tests/libtest-xwayland-client.a.p/xcb-client-helper.c.o.d -o tests/libtest-xwayland-client.a.p/xcb-client-helper.c.o -c ../tests/xcb-client-helper.c [ 6s] ../tests/xcb-client-helper.c:39:10: fatal error: wayland-client.h: No such file or directory Reported-by: Jan Engelhardt Signed-off-by: Jan Engelhardt Signed-off-by: Marius Vlad --- tests/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 03eb1b84..1d59a93e 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -323,7 +323,8 @@ if get_option('xwayland') include_directories: common_inc, dependencies: [ dep_pixman, dep_xcb_xwayland, - xcb_dep, xcb_cursor_dep + xcb_dep, xcb_cursor_dep, + dep_wayland_client, ], install: false, )