From 8677ac53d228f7e041f4de15d91e0def27998b5a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 20 Oct 2002 21:45:40 +0000 Subject: [PATCH] show something in the summary when --enable-debug was explicitly given too git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17589 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- configure | 4 ++-- configure.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 00209b4364..c112afc5cb 100755 --- a/configure +++ b/configure @@ -22353,8 +22353,8 @@ echo "Configured wxWindows ${WX_VERSION} for \`${host}'" echo "" echo " Which GUI toolkit should wxWindows use? ${TOOLKIT:-base only}" -echo " Should wxWindows be compiled in debug mode? ${wxUSE_DEBUG-no}" -echo " Should wxWindows be linked as a shared library? ${wxUSE_SHARED}" +echo " Should wxWindows be compiled in debug mode? ${wxUSE_DEBUG:-no}" +echo " Should wxWindows be linked as a shared library? ${wxUSE_SHARED:-no}" echo " Which libraries should wxWindows use?" echo " jpeg ${wxUSE_LIBJPEG-none}" diff --git a/configure.in b/configure.in index c3e523dc34..0f3b5eb4d6 100644 --- a/configure.in +++ b/configure.in @@ -5312,8 +5312,8 @@ echo "Configured wxWindows ${WX_VERSION} for \`${host}'" echo "" echo " Which GUI toolkit should wxWindows use? ${TOOLKIT:-base only}" -echo " Should wxWindows be compiled in debug mode? ${wxUSE_DEBUG-no}" -echo " Should wxWindows be linked as a shared library? ${wxUSE_SHARED}" +echo " Should wxWindows be compiled in debug mode? ${wxUSE_DEBUG:-no}" +echo " Should wxWindows be linked as a shared library? ${wxUSE_SHARED:-no}" echo " Which libraries should wxWindows use?" echo " jpeg ${wxUSE_LIBJPEG-none}"