This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: configure.ac: fix qv4l2 if QGLFunctions doesn't exist Author: Mauro Carvalho Chehab <[email protected]> Date: Mon Nov 24 12:35:56 2014 -0200 QGLFunctions were added only on qt version 4.8. Signed-off-by: Mauro Carvalho Chehab <[email protected]> (cherry picked from commit 2019b8aaca81d1bb9c62634a14bf478430946080) configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=3271919ae6a6e9da60750efd55ca5dc9107d6ac5 diff --git a/configure.ac b/configure.ac index 069913d..5b69359 100644 --- a/configure.ac +++ b/configure.ac @@ -143,7 +143,7 @@ else AC_MSG_WARN(Qt4 or higher is not available) fi -PKG_CHECK_MODULES(QTGL, [QtOpenGL >= 4.4 gl], [qt_pkgconfig_gl=true], [qt_pkgconfig_gl=false]) +PKG_CHECK_MODULES(QTGL, [QtOpenGL >= 4.8 gl], [qt_pkgconfig_gl=true], [qt_pkgconfig_gl=false]) if test "x$qt_pkgconfig_gl" = "xtrue"; then AC_DEFINE([HAVE_QTGL], [1], [qt has opengl support]) else _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
