From 4167b02050a66b31ee27885f421923fbcdfc5d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 31 Jan 2018 16:10:24 +0000 Subject: [PATCH] configure: fix opengl api conditional Fixes build of openglmixers plugin due to mismatch between build system conditional USE_OPENGL and define in gstglconfig.h --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 16699159f6..b413720e58 100644 --- a/configure.ac +++ b/configure.ac @@ -1940,7 +1940,7 @@ AG_GST_CHECK_FEATURE(GL, [gl elements], gl, [ fi ]) AM_CONDITIONAL(USE_GL, test "x$HAVE_GL" = "xyes") -AM_CONDITIONAL(USE_OPENGL, test "x$GST_GL_HAVE_API_GL" = "xyes") +AM_CONDITIONAL(USE_OPENGL, test "x$GST_GL_HAVE_API_GL" = "x1") dnl *** gtk+ *** HAVE_GTK3_GL="no"