From 6f8b9574f2d0dbb56d3efaf0b48366aedb257e41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Fri, 26 May 2023 17:38:13 +0000 Subject: [PATCH] gstwayland: Don't depend on wayland-protocols wayland-protocols are needed to build gstwayland, but not for dependent projects. Part-of: --- subprojects/gst-plugins-bad/gst-libs/gst/wayland/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-bad/gst-libs/gst/wayland/meson.build b/subprojects/gst-plugins-bad/gst-libs/gst/wayland/meson.build index d660182b6a..f96da60e1c 100644 --- a/subprojects/gst-plugins-bad/gst-libs/gst/wayland/meson.build +++ b/subprojects/gst-plugins-bad/gst-libs/gst/wayland/meson.build @@ -74,7 +74,7 @@ if use_wayland darwin_versions : osxversion, install : true, dependencies : [gst_dep, gstallocators_dep, gstvideo_dep, libdrm_dep, - wl_client_dep, wl_protocol_dep] + wl_client_dep] ) pkg_name = 'gstreamer-wayland-1.0' @@ -90,7 +90,7 @@ if use_wayland gstwayland_dep = declare_dependency(link_with : gstwayland, include_directories : [libsinc], dependencies : [gst_dep, gstallocators_dep, gstvideo_dep, libdrm_dep, - wl_client_dep, wl_protocol_dep]) + wl_client_dep]) install_headers(wl_headers, subdir: 'gstreamer-1.0/gst/wayland') meson.override_dependency(pkg_name, gstwayland_dep)