diff options
author | Mathias Gumz <akira@fluxbox.org> | 2015-01-28 19:36:55 (GMT) |
---|---|---|
committer | Mathias Gumz <akira@fluxbox.org> | 2015-01-28 19:36:55 (GMT) |
commit | 77f0963d00ecbd19e6d254b2d6a3fc5a2ebb1c29 (patch) | |
tree | 16be1c658bd53f901d2a2dbb81a6dc4f12d0c805 | |
parent | aa39a1a666c6e9ec47bef9dfd570c3b6ca772b7b (diff) | |
download | fluxbox-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.ac | 7 |
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 | |||
599 | nls/zh_TW/Makefile | 599 | nls/zh_TW/Makefile |
600 | ]) | 600 | ]) |
601 | 601 | ||
602 | MSG_RESULT_CXXFLAGS="$FRIBIDI_CFLAGS $XRANDR_CFLAGS $AM_CPPFLAGS $CXXFLAGS" | ||
603 | MSG_RESULT_LIBS="$LDADD $FONTCONFIG_LIBS $FREETYPE2_LIBS $FRIBIDI_LIBS $IMLIB2_LIBS $RANDR_LIBS $XEXT_LIBS $XFT_LIBS $XINERAMA_LIBS $XPM_LIBS $XRENDER_LIBS" | ||
604 | |||
602 | dnl Print results | 605 | dnl Print results |
603 | AC_MSG_RESULT([]) | 606 | AC_MSG_RESULT([]) |
604 | AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.]) | 607 | AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.]) |
@@ -614,8 +617,8 @@ AC_MSG_RESULT([ '$locale_path' for nls files.]) | |||
614 | AC_MSG_RESULT([ '$CXX' for C++ compiler.]) | 617 | AC_MSG_RESULT([ '$CXX' for C++ compiler.]) |
615 | AC_MSG_RESULT([]) | 618 | AC_MSG_RESULT([]) |
616 | AC_MSG_RESULT([Building with:]) | 619 | AC_MSG_RESULT([Building with:]) |
617 | AC_MSG_RESULT([ '$CXXFLAGS' for C++ compiler flags.]) | 620 | AC_MSG_RESULT([ '$MSG_RESULT_CXXFLAGS' for C++ compiler flags.]) |
618 | AC_MSG_RESULT([ '$LIBS' for linker flags.]) | 621 | AC_MSG_RESULT([ '$MSG_RESULT_LIBS' for linker flags.]) |
619 | AC_MSG_RESULT([]) | 622 | AC_MSG_RESULT([]) |
620 | AC_MSG_RESULT([Now build $PACKAGE with 'make']) | 623 | AC_MSG_RESULT([Now build $PACKAGE with 'make']) |
621 | AC_MSG_RESULT([]) | 624 | AC_MSG_RESULT([]) |