build: Fix build on systems with wayland-client headers in non-default location
authorDominique Leuenberger <dimstar@opensuse.org>
Thu, 27 Feb 2020 13:54:13 +0000 (14:54 +0100)
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Wed, 4 Mar 2020 07:10:39 +0000 (07:10 +0000)
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

index b1ede41..89bc6ab 100644 (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,