aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Gumz <akira@fluxbox.org>2015-01-28 19:36:55 (GMT)
committerMathias Gumz <akira@fluxbox.org>2015-01-28 19:36:55 (GMT)
commit77f0963d00ecbd19e6d254b2d6a3fc5a2ebb1c29 (patch)
tree16be1c658bd53f901d2a2dbb81a6dc4f12d0c805
parentaa39a1a666c6e9ec47bef9dfd570c3b6ca772b7b (diff)
downloadfluxbox-77f0963d00ecbd19e6d254b2d6a3fc5a2ebb1c29.zip
fluxbox-77f0963d00ecbd19e6d254b2d6a3fc5a2ebb1c29.tar.bz2
Increase verbosity of 'configure' summary
After 'configure' finishes it states just CXXFLAGS and LIBS. But these are actually not complete, the build system will use much more later on. Problems with the build system are easier to address if 'configure' is a little bit more verbose.
-rw-r--r--configure.ac7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 1cf80c7..61be8e5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -599,6 +599,9 @@ nls/zh_CN/Makefile
599nls/zh_TW/Makefile 599nls/zh_TW/Makefile
600]) 600])
601 601
602MSG_RESULT_CXXFLAGS="$FRIBIDI_CFLAGS $XRANDR_CFLAGS $AM_CPPFLAGS $CXXFLAGS"
603MSG_RESULT_LIBS="$LDADD $FONTCONFIG_LIBS $FREETYPE2_LIBS $FRIBIDI_LIBS $IMLIB2_LIBS $RANDR_LIBS $XEXT_LIBS $XFT_LIBS $XINERAMA_LIBS $XPM_LIBS $XRENDER_LIBS"
604
602dnl Print results 605dnl Print results
603AC_MSG_RESULT([]) 606AC_MSG_RESULT([])
604AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.]) 607AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.])
@@ -614,8 +617,8 @@ AC_MSG_RESULT([ '$locale_path' for nls files.])
614AC_MSG_RESULT([ '$CXX' for C++ compiler.]) 617AC_MSG_RESULT([ '$CXX' for C++ compiler.])
615AC_MSG_RESULT([]) 618AC_MSG_RESULT([])
616AC_MSG_RESULT([Building with:]) 619AC_MSG_RESULT([Building with:])
617AC_MSG_RESULT([ '$CXXFLAGS' for C++ compiler flags.]) 620AC_MSG_RESULT([ '$MSG_RESULT_CXXFLAGS' for C++ compiler flags.])
618AC_MSG_RESULT([ '$LIBS' for linker flags.]) 621AC_MSG_RESULT([ '$MSG_RESULT_LIBS' for linker flags.])
619AC_MSG_RESULT([]) 622AC_MSG_RESULT([])
620AC_MSG_RESULT([Now build $PACKAGE with 'make']) 623AC_MSG_RESULT([Now build $PACKAGE with 'make'])
621AC_MSG_RESULT([]) 624AC_MSG_RESULT([])