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).
This commit is contained in:
Dominique Leuenberger 2020-02-27 14:54:13 +01:00 committed by GStreamer Merge Bot
parent be3de5a3db
commit e12e67099b

View file

@ -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,