From 3e3510d382466d01b4ee34a3d5cc437e631565bd Mon Sep 17 00:00:00 2001 From: Luke Mewburn Date: Sun, 28 Oct 2012 08:53:59 +1100 Subject: [PATCH] Display results at end of configure. Display configuration results at end of configure run, including the version, c++ compiler, and various compiler flag variables. Signed-off-by: Luke Mewburn --- configure.ac | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configure.ac b/configure.ac index c5f167c..d630acf 100644 --- a/configure.ac +++ b/configure.ac @@ -318,3 +318,11 @@ AC_CONFIG_FILES([ conf/Makefile ]) AC_OUTPUT + +AC_MSG_NOTICE([ === Configuration results ===]) +AC_MSG_NOTICE([Version: $PACKAGE_VERSION]) +AC_MSG_NOTICE([c++ compiler: $CXX]) +AC_MSG_NOTICE([Warning CXXFLAGS: $WARNING_CXXFLAGS]) +AC_MSG_NOTICE([Picky CXXFLAGS: $PICKY_CXXFLAGS]) +AC_MSG_NOTICE([Harden CFLAGS: $HARDEN_CFLAGS]) +AC_MSG_NOTICE([ =============================])