summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2020-10-12 14:12:07 +0300
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-12-03 14:54:47 +0000
commitaa68d0301398526b71a975d4e4193187b1612a5f (patch)
treee3eea9ace67db3c29be576b88388df1acb15cd49 /gst-libs
parent339ad46b935e43a08558bf3349dc0f2bdc1f7d26 (diff)
downloadgstreamer-plugins-bad-aa68d0301398526b71a975d4e4193187b1612a5f.tar.gz
gst-libs/gst/wayland: Install "unstable" wayland header
Context creation and retrieval is required, the symbols are exported with the header missing. Users most likely define GST_USE_UNSTABLE_API so they're aware of the implications of using a header that might change between releases. Signed-off-by: Marius Vlad <marius.vlad@collabora.com> Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1688>
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/wayland/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst-libs/gst/wayland/meson.build b/gst-libs/gst/wayland/meson.build
index d4b31afbc..182c9c308 100644
--- a/gst-libs/gst/wayland/meson.build
+++ b/gst-libs/gst/wayland/meson.build
@@ -13,7 +13,7 @@ if use_wayland
include_directories : [configinc, libsinc],
version : libversion,
soversion : soversion,
- darwin_versions : osxversion,
+ darwin_versions : osxversion,
install : true,
dependencies : [gst_dep, gstvideo_dep, wl_client_dep]
)
@@ -31,4 +31,5 @@ if use_wayland
dependencies : [gst_dep, gstvideo_dep])
meson.override_dependency('gstreamer-wayland-1.0', gstwayland_dep)
+ install_headers('wayland.h', subdir: 'gstreamer-1.0/gst/wayland')
endif