From eb328262c37be6636119bf00d9e259f83c067591 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sun, 4 Jan 2009 04:48:55 +0000 Subject: [PATCH] Print some useful messages at the end of configure: Install prefix, SVN Revision, Debug (yes+flags/no), CPPFLAGS, LDFLAGS. Hopefully this will stop any wonky settings from sliding in without being noticed. Originally committed to SVN as r2620. --- configure.in | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index eae143f30..2ec8c4b72 100644 --- a/configure.in +++ b/configure.in @@ -933,7 +933,9 @@ AC_ARG_ENABLE(debug, [ --enable-debug turn on debugging (default=no)]) if test "$enable_debug" = "yes"; then AC_MSG_RESULT([yes ($DEBUG_FLAGS)]) CPPFLAGS="$DEBUG_FLAGS $CPPFLAGS" + msg_debug="($DEBUG_FLAGS)" else + enable_debug="no" AC_MSG_RESULT([no]) fi @@ -1008,8 +1010,14 @@ if test -z "$found_video_provider"; then ]) fi - AC_MSG_RESULT([ +Configure settings: + Install prefix: $prefix + SVN Revision: $SVN_REVISION + Debug $enable_debug $msg_debug + CPPFLAGS $CPPFLAGS + LDFLAGS $LDFLAGS + Scripting Engines: auto3 Lua: $with_auto3 $lua50_disabled auto4 Lua: $with_auto4 $lua51_disabled