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: Add a summary of the compile options Author: Mauro Carvalho Chehab <[email protected]> Date: Sat Feb 27 16:31:12 2016 -0300 As there are some optional features that may not be enabled, depending if the development package was installed or not, print a summary of those optional features at the end. That helps to identify if some package was not installed. Signed-off-by: Mauro Carvalho Chehab <[email protected]> configure.ac | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=e608a830327f665283422fa05c848e3fc1d9135c diff --git a/configure.ac b/configure.ac index ce232cf99696..4d75dbeb18ce 100644 --- a/configure.ac +++ b/configure.ac @@ -186,6 +186,8 @@ AS_IF([test "x$with_jpeg" != xno], AM_CONDITIONAL([HAVE_JPEG], [$have_jpeg]) +QT_VERSION="none" + PKG_CHECK_MODULES(QT5, [Qt5Core >= 5.0 Qt5Gui >= 5.0 Qt5Widgets >= 5.0], [qt_pkgconfig=true], [qt_pkgconfig=false]) if test "x$qt_pkgconfig" = "xtrue"; then QT_CFLAGS="$QT5_CFLAGS -fPIC" @@ -205,6 +207,7 @@ if test "x$qt_pkgconfig" = "xtrue"; then AC_SUBST(QT_CFLAGS) AC_SUBST(QT_LIBS) AC_DEFINE([HAVE_QTGL], [1], [qt has opengl support]) + QT_VERSION="v5" else AC_MSG_WARN(Qt5 OpenGL is not available) fi @@ -223,6 +226,7 @@ else 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]) + QT_VERSION="v4" else AC_MSG_WARN(Qt4 OpenGL is not available) fi @@ -410,3 +414,21 @@ fi CPPFLAGS="-I\$(top_srcdir)/lib/include -Wall -Wpointer-arith -D_GNU_SOURCE $CPPFLAGS" AC_OUTPUT + +dnl --------------------------------------------------------------------- +dnl compile time options summary + +cat <<EOF + +compile time options summary +============================ + + X11 : $x11_pkgconfig + GL : $gl_pkgconfig + glu : $glu_pkgconfig + libjpeg : $with_jpeg + libudev : $have_libudev + QT version : $QT_VERSION + ALSA support : $alsa_pkgconfig + +EOF _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
