From 8ed603958dcb23c004d25e0df4a5fcbc0080ddb7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 22 Jan 2019 12:52:25 +0000 Subject: [PATCH] meson: detect opengl api from -base .pc files correctly There was a mismatch between the .pc files generated by autotools and by meson that would lead to meson not detecting that opengl api is available even though it is, if -base was built with autotools. The mismatch has now been rectified in -base, so we need to update for that. This is mostly for consistency, this problem didn't seem to affect anything in -good. See https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/issues/871 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 5eb059b..6416f1c 100644 --- a/meson.build +++ b/meson.build @@ -297,7 +297,7 @@ if build_gstgl set_variable('gst_gl_have_platform_@0@'.format(p), gst_gl_platforms.contains(p)) endforeach - foreach api : ['opengl', 'gles2'] + foreach api : ['gl', 'gles2'] set_variable('gst_gl_have_api_@0@'.format(api), gst_gl_apis.contains(api)) endforeach endif -- 2.7.4