mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
configure.ac: Fix variable naming to make it possible to build the glimagesink plugin. Fixes bug #514093.
Original commit message from CVS: 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.
This commit is contained in:
parent
0aedb33d14
commit
b451b72f2d
2 changed files with 10 additions and 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>
|
2008-02-02 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* ext/metadata/gstmetadatademux.c:
|
* ext/metadata/gstmetadatademux.c:
|
||||||
|
|
|
@ -299,11 +299,11 @@ dnl OpenGL
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_OPENGL, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_OPENGL, true)
|
||||||
AG_GST_CHECK_FEATURE(OPENGL, [Open GL], glsink, [
|
AG_GST_CHECK_FEATURE(OPENGL, [Open GL], glsink, [
|
||||||
PKG_CHECK_MODULES(GL, gl >= 7.1.0, [
|
PKG_CHECK_MODULES(GL, gl >= 7.1.0, [
|
||||||
HAVE_GL="yes"
|
HAVE_OPENGL="yes"
|
||||||
AC_SUBST(GL_CFLAGS)
|
AC_SUBST(GL_CFLAGS)
|
||||||
AC_SUBST(GL_LIBS)
|
AC_SUBST(GL_LIBS)
|
||||||
],[
|
],[
|
||||||
HAVE_GL=no
|
HAVE_OPENGL=no
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
Loading…
Reference in a new issue