From e12e67099b98b10851f88dc0624adba0937fa96d Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Thu, 27 Feb 2020 14:54:13 +0100 Subject: [PATCH] build: Fix build on systems with wayland-client headers in non-default location Add a missing dependency to wl_client_dep for the wayland build. Some distros have the wayland-client headers not installed in /usr/include (which is perfectly valid, the pkg-config .pc file gives the right feedback). --- gst-libs/gst/wayland/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/wayland/meson.build b/gst-libs/gst/wayland/meson.build index b1ede41f1a..89bc6ab571 100644 --- a/gst-libs/gst/wayland/meson.build +++ b/gst-libs/gst/wayland/meson.build @@ -15,7 +15,7 @@ if use_wayland soversion : soversion, darwin_versions : osxversion, install : true, - dependencies : [gst_dep, gstvideo_dep] + dependencies : [gst_dep, gstvideo_dep, wl_client_dep] ) gstwayland_dep = declare_dependency(link_with : gstwayland,