projects
/
platform
/
upstream
/
gst-plugins-base.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7874c74
)
meson: opengl: fix enabled_gl_apis in pkg-config file
author
Tim-Philipp Müller
<tim@centricular.com>
Tue, 22 Jan 2019 13:24:29 +0000
(13:24 +0000)
committer
Tim-Philipp Müller
<tim@centricular.com>
Tue, 22 Jan 2019 13:35:38 +0000
(13:35 +0000)
Make consistent with what autotools puts into enabled_gl_apis
variable. Autotools puts 'gl' in there instead of 'opengl'.
This would cause problems when building -bad glmixers plugin
in meson against a -base that was built with autotools.
See https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/issues/871
gst-libs/gst/gl/meson.build
patch
|
blob
|
history
diff --git
a/gst-libs/gst/gl/meson.build
b/gst-libs/gst/gl/meson.build
index
0e8f219
..
b71c49a
100644
(file)
--- a/
gst-libs/gst/gl/meson.build
+++ b/
gst-libs/gst/gl/meson.build
@@
-455,7
+455,7
@@
endif
if gl_dep.found()
gl_lib_deps += gl_dep
glconf.set10('GST_GL_HAVE_OPENGL', 1)
- enabled_gl_apis += '
open
gl'
+ enabled_gl_apis += 'gl'
endif
# EGL checks