diff --git a/configure b/configure index 145ed48dc3..6dede6896b 100755 --- a/configure +++ b/configure @@ -22353,3 +22353,21 @@ if test "$no_recursion" != yes; then fi +echo +echo "Configured wxWindows ${WX_VERSION} for \`${host}'" +echo "" +echo " Should wxWindows use a graphic toolkit? ${wxUSE_GUI}" +echo " Which toolkit should wxWindows use? ${TOOLKIT}" + +echo " Should wxWindows be compiled in debug mode? ${wxUSE_DEBUG}" +echo " Should wxWindows be linked as a shared library? ${wxUSE_SHARED}" + +echo " Which libraries should wxWindows use?" +echo " jpeg ${wxUSE_LIBJPEG}" +echo " png ${wxUSE_LIBPNG}" +echo " regex ${wxUSE_REGEX}" +echo " tiff ${wxUSE_LIBTIFF}" +echo " zlib ${wxUSE_ZLIB}" + +echo "" + diff --git a/configure.in b/configure.in index 9682abc6bf..5c5d2ba49e 100644 --- a/configure.in +++ b/configure.in @@ -5311,4 +5311,23 @@ AC_OUTPUT([ ] ) +dnl report on what we decided to do +echo +echo "Configured wxWindows ${WX_VERSION} for \`${host}'" +echo "" +echo " Should wxWindows use a graphic toolkit? ${wxUSE_GUI}" +echo " Which toolkit should wxWindows use? ${TOOLKIT}" + +echo " Should wxWindows be compiled in debug mode? ${wxUSE_DEBUG}" +echo " Should wxWindows be linked as a shared library? ${wxUSE_SHARED}" + +echo " Which libraries should wxWindows use?" +echo " jpeg ${wxUSE_LIBJPEG}" +echo " png ${wxUSE_LIBPNG}" +echo " regex ${wxUSE_REGEX}" +echo " tiff ${wxUSE_LIBTIFF}" +echo " zlib ${wxUSE_ZLIB}" + +echo "" + dnl vi: set et sts=4 sw=4: