diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,11 @@ +2008-02-03 Sebastian Dröge <slomo@circular-chaos.org> + + Patch by: Andrzej Mendel <andrzej dot mendel at gmail dot com> + + * configure.ac: + Fix variable naming to make it possible to build the glimagesink + plugin. Fixes bug #514093. + 2008-02-02 Tim-Philipp Müller <tim at centricular dot net> * ext/metadata/gstmetadatademux.c: diff --git a/configure.ac b/configure.ac index bada2158..eced0674 100644 --- a/configure.ac +++ b/configure.ac @@ -299,11 +299,11 @@ dnl OpenGL translit(dnm, m, l) AM_CONDITIONAL(USE_OPENGL, true) AG_GST_CHECK_FEATURE(OPENGL, [Open GL], glsink, [ PKG_CHECK_MODULES(GL, gl >= 7.1.0, [ - HAVE_GL="yes" + HAVE_OPENGL="yes" AC_SUBST(GL_CFLAGS) AC_SUBST(GL_LIBS) ],[ - HAVE_GL=no + HAVE_OPENGL=no AC_MSG_RESULT(no) ]) ]) |