meson: opengl: fix enabled_gl_apis in pkg-config file
authorTim-Philipp Müller <tim@centricular.com>
Tue, 22 Jan 2019 13:24:29 +0000 (13:24 +0000)
committerTim-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

index 0e8f219..b71c49a 100644 (file)
@@ -455,7 +455,7 @@ endif
 if gl_dep.found()
   gl_lib_deps += gl_dep
   glconf.set10('GST_GL_HAVE_OPENGL', 1)
-  enabled_gl_apis += 'opengl'
+  enabled_gl_apis += 'gl'
 endif
 
 # EGL checks