summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2020-07-16 18:07:34 +1000
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-07-16 08:12:53 +0000
commit26a88fdb7afbc08a4becffafd84a212caa48fba6 (patch)
treef75381c2cd6f97cd67d33468244f507f6ccefec5
parent36fec290a3ebff6cc3016983e173d264ff68d4ac (diff)
downloadgstreamer-plugins-base-26a88fdb7afbc08a4becffafd84a212caa48fba6.tar.gz
build/gl: remove unused cocoa/win32 header variables
We don't install any cocoa/win32 specific headers. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/759>
-rw-r--r--gst-libs/gst/gl/meson.build5
1 files changed, 1 insertions, 4 deletions
diff --git a/gst-libs/gst/gl/meson.build b/gst-libs/gst/gl/meson.build
index ef48507a1..e3982322a 100644
--- a/gst-libs/gst/gl/meson.build
+++ b/gst-libs/gst/gl/meson.build
@@ -98,8 +98,6 @@ gl_prototype_headers = [
gl_x11_headers = []
gl_wayland_headers = []
-gl_win32_headers = []
-gl_cocoa_headers = []
gl_egl_headers = []
glconf = configuration_data()
@@ -955,7 +953,6 @@ if build_gstgl
message('Building libgstgl with GL winsys: ' + ' '.join(enabled_gl_winsys))
install_headers(gl_headers, subdir : 'gstreamer-1.0/gst/gl')
- install_headers(gl_cocoa_headers, subdir : 'gstreamer-1.0/gst/gl/cocoa')
install_headers(gl_egl_headers, subdir : 'gstreamer-1.0/gst/gl/egl')
install_headers(gl_prototype_headers, subdir : 'gstreamer-1.0/gst/gl/glprototypes')
install_headers(gl_x11_headers, subdir : 'gstreamer-1.0/gst/gl/x11')
@@ -991,7 +988,7 @@ if build_gstgl
gl_lib_deps, gl_platform_deps, gl_winsys_deps, gl_misc_deps])
if build_gir
gl_gir = gnome.generate_gir(gstgl,
- sources : gl_sources + [gl_enumtypes_h] + [gl_enumtypes_c] + gir_gl_headers + gl_x11_headers + gl_wayland_headers + gl_win32_headers + gl_cocoa_headers + gl_egl_headers,
+ sources : gl_sources + [gl_enumtypes_h] + [gl_enumtypes_c] + gir_gl_headers + gl_x11_headers + gl_wayland_headers + gl_egl_headers,
namespace : 'GstGL',
nsversion : api_version,
identifier_prefix : 'Gst',