From 6330eb0cb343dfcdfea2ac742dba797df2ccaf39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 22 Jan 2019 13:24:29 +0000 Subject: [PATCH] meson: opengl: fix enabled_gl_apis in pkg-config file 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/gl/meson.build b/gst-libs/gst/gl/meson.build index 0e8f21960e..b71c49a49d 100644 --- 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 += 'opengl' + enabled_gl_apis += 'gl' endif # EGL checks