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.
This commit is contained in:
Mathias Gumz 2015-01-28 20:36:55 +01:00
parent aa39a1a666
commit 77f0963d00

View file

@ -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([])