all repos — fluxbox @ 77f0963d00ecbd19e6d254b2d6a3fc5a2ebb1c29

custom fork of the fluxbox windowmanager

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.
Mathias Gumz akira@fluxbox.org
commit

77f0963d00ecbd19e6d254b2d6a3fc5a2ebb1c29

parent

aa39a1a666c6e9ec47bef9dfd570c3b6ca772b7b

1 files changed, 5 insertions(+), 2 deletions(-)

jump to
M configure.acconfigure.ac

@@ -599,6 +599,9 @@ nls/zh_CN/Makefile

nls/zh_TW/Makefile ]) +MSG_RESULT_CXXFLAGS="$FRIBIDI_CFLAGS $XRANDR_CFLAGS $AM_CPPFLAGS $CXXFLAGS" +MSG_RESULT_LIBS="$LDADD $FONTCONFIG_LIBS $FREETYPE2_LIBS $FRIBIDI_LIBS $IMLIB2_LIBS $RANDR_LIBS $XEXT_LIBS $XFT_LIBS $XINERAMA_LIBS $XPM_LIBS $XRENDER_LIBS" + dnl Print results AC_MSG_RESULT([]) AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.])

@@ -614,8 +617,8 @@ AC_MSG_RESULT([ '$locale_path' for nls files.])

AC_MSG_RESULT([ '$CXX' for C++ compiler.]) AC_MSG_RESULT([]) AC_MSG_RESULT([Building with:]) -AC_MSG_RESULT([ '$CXXFLAGS' for C++ compiler flags.]) -AC_MSG_RESULT([ '$LIBS' for linker flags.]) +AC_MSG_RESULT([ '$MSG_RESULT_CXXFLAGS' for C++ compiler flags.]) +AC_MSG_RESULT([ '$MSG_RESULT_LIBS' for linker flags.]) AC_MSG_RESULT([]) AC_MSG_RESULT([Now build $PACKAGE with 'make']) AC_MSG_RESULT([])