configure: fix opengl api conditional

Fixes build of openglmixers plugin due to mismatch between
build system conditional USE_OPENGL and define in gstglconfig.h
This commit is contained in:
Tim-Philipp Müller 2018-01-31 16:10:24 +00:00
parent b19e3d8cf3
commit 4167b02050

View file

@ -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"