summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRafał Dzięgiel <rafostar.github@gmail.com>2021-05-15 08:52:36 +0200
committerRafostar <40623528+Rafostar@users.noreply.github.com>2021-05-15 14:03:23 +0200
commitbbd4ee29865c60e31e71490aa5b5cd79779521f7 (patch)
treeeb0f036e6dfd50d658865754b5c3dd0d1c016b54 /modules
parent0902f45d7156b181cda58ce051e44abb3158c84e (diff)
downloadgtk+-bbd4ee29865c60e31e71490aa5b5cd79779521f7.tar.gz
meson: Do not enforce GStreamer EGL lib
GStreamer EGL headers are handled by GstGL lib. No need to additionally import them.
Diffstat (limited to 'modules')
-rw-r--r--modules/media/meson.build6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/media/meson.build b/modules/media/meson.build
index bebb9bdf88..154390e7fe 100644
--- a/modules/media/meson.build
+++ b/modules/media/meson.build
@@ -45,10 +45,8 @@ gstplayer_dep = dependency('gstreamer-player-1.0', version: '>= 1.12.3',
required: get_option('media-gstreamer'))
gstgl_dep = dependency('gstreamer-gl-1.0', version: '>= 1.12.3',
required: get_option('media-gstreamer'))
-gstglegl_dep = dependency('gstreamer-gl-egl-1.0', version : '>= 1.12.3',
- required: get_option('media-gstreamer'))
-if gstplayer_dep.found() and gstgl_dep.found() and gstglegl_dep.found()
+if gstplayer_dep.found() and gstgl_dep.found()
media_backends += 'gstreamer'
cdata.set('HAVE_GSTREAMER', 1)
shared_module('media-gstreamer',
@@ -58,7 +56,7 @@ if gstplayer_dep.found() and gstgl_dep.found() and gstglegl_dep.found()
'gtkgstsink.c',
],
c_args: extra_c_args,
- dependencies: [ libm, libgtk_dep, gstplayer_dep, gstgl_dep, gstglegl_dep ],
+ dependencies: [ libm, libgtk_dep, gstplayer_dep, gstgl_dep ],
name_suffix: module_suffix,
install_dir: media_install_dir,
install: true,