summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-01-31 16:10:24 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-01-31 16:10:39 +0000
commit4167b02050a66b31ee27885f421923fbcdfc5d83 (patch)
treec5fd816b0dfb5553d2af7f16edafa4d2f6451dc6
parentb19e3d8cf33833f1c38b126c48a39e8961facbc4 (diff)
downloadgstreamer-plugins-bad-4167b02050a66b31ee27885f421923fbcdfc5d83.tar.gz
configure: fix opengl api conditional
Fixes build of openglmixers plugin due to mismatch between build system conditional USE_OPENGL and define in gstglconfig.h
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 16699159f..b413720e5 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"