Disable debugrpt sample for Windows since it's not supported with mingw/cygwin

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34099 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2005-05-17 14:28:18 +00:00
parent 4e83306987
commit 489c9090ef
2 changed files with 9 additions and 5 deletions

10
configure vendored
View File

@@ -36914,9 +36914,9 @@ _ACEOF
fi fi
if test "$wxUSE_DEBUGREPORT" = "yes"; then if test "$wxUSE_DEBUGREPORT" = "yes"; then
if test "$USE_OS2" = "1"; then if test "$USE_OS2" = "1" -o "$USE_WIN32" = "1"; then
{ echo "$as_me:$LINENO: WARNING: Creating debug reports not supported under OS/2 yet, disabled" >&5 { echo "$as_me:$LINENO: WARNING: Creating debug reports not supported by this compiler, disabled" >&5
echo "$as_me: WARNING: Creating debug reports not supported under OS/2 yet, disabled" >&2;} echo "$as_me: WARNING: Creating debug reports not supported by this compiler, disabled" >&2;}
wxUSE_DEBUGREPORT=no wxUSE_DEBUGREPORT=no
else else
cat >>confdefs.h <<\_ACEOF cat >>confdefs.h <<\_ACEOF
@@ -41500,7 +41500,11 @@ echo "${ECHO_T}$bakefile_cv_prog_makeisgnu" >&6
PLATFORM_MACOS=1 PLATFORM_MACOS=1
;; ;;
* ) * )
if test "$wxUSE_WINE" = "yes"; then
PLATFORM_WIN32=1
else
PLATFORM_UNIX=1 PLATFORM_UNIX=1
fi
;; ;;
esac esac
else else

View File

@@ -5002,8 +5002,8 @@ if test "$wxUSE_STACKWALKER" = "yes"; then
fi fi
if test "$wxUSE_DEBUGREPORT" = "yes"; then if test "$wxUSE_DEBUGREPORT" = "yes"; then
if test "$USE_OS2" = "1"; then if test "$USE_OS2" = "1" -o "$USE_WIN32" = "1"; then
AC_MSG_WARN([Creating debug reports not supported under OS/2 yet, disabled]) AC_MSG_WARN([Creating debug reports not supported by this compiler, disabled])
wxUSE_DEBUGREPORT=no wxUSE_DEBUGREPORT=no
else else
AC_DEFINE(wxUSE_DEBUGREPORT) AC_DEFINE(wxUSE_DEBUGREPORT)