Output the value of --enable-debug option in configure.

As we use AC_ARG_ENABLE() instead of WX_ARG_ENABLE() for it, we need to call
AC_MSG_RESULT() explicitly or its value is never reported and configure output
is corrupted.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70014 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2011-12-16 09:36:36 +00:00
parent 0c717dd16b
commit a97f71fa60
2 changed files with 3 additions and 0 deletions

2
configure vendored
View File

@ -4499,6 +4499,8 @@ else
fi
{ echo "$as_me:$LINENO: result: ${enable_debug-default}" >&5
echo "${ECHO_T}${enable_debug-default}" >&6; }
case "$wxUSE_DEBUG" in
yes)

View File

@ -658,6 +658,7 @@ AC_ARG_ENABLE(debug, [ --enable-debug build library for debuggin
],
wxUSE_DEBUG=default
)
AC_MSG_RESULT([${enable_debug-default}])
case "$wxUSE_DEBUG" in
yes)