]> git.saurik.com Git - wxWidgets.git/commitdiff
Disable debugrpt sample for Windows since it's not supported with mingw/cygwin
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Tue, 17 May 2005 14:28:18 +0000 (14:28 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Tue, 17 May 2005 14:28:18 +0000 (14:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34099 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure
configure.in

index f1c98a384d30a0974a6705644127cbaff8153cd4..7bfccfa4dd32da8b8602e321d7d7be81a5820e57 100755 (executable)
--- a/configure
+++ b/configure
@@ -36914,9 +36914,9 @@ _ACEOF
 fi
 
 if test "$wxUSE_DEBUGREPORT" = "yes"; then
-    if test "$USE_OS2" = "1"; then
-        { echo "$as_me:$LINENO: WARNING: Creating debug reports not supported under OS/2 yet, disabled" >&5
-echo "$as_me: WARNING: Creating debug reports not supported under OS/2 yet, disabled" >&2;}
+    if test "$USE_OS2" = "1" -o "$USE_WIN32" = "1"; then
+        { echo "$as_me:$LINENO: WARNING: Creating debug reports not supported by this compiler, disabled" >&5
+echo "$as_me: WARNING: Creating debug reports not supported by this compiler, disabled" >&2;}
         wxUSE_DEBUGREPORT=no
     else
         cat >>confdefs.h <<\_ACEOF
@@ -41500,7 +41500,11 @@ echo "${ECHO_T}$bakefile_cv_prog_makeisgnu" >&6
                 PLATFORM_MACOS=1
             ;;
             * )
+            if test "$wxUSE_WINE" = "yes"; then
+                PLATFORM_WIN32=1
+            else
                 PLATFORM_UNIX=1
+            fi
             ;;
         esac
     else
index 9e16b4e80aa2b6cb0237c333fb7b68a582c86b12..941b86870e9604a9f88173a5e3a63b34184982fc 100644 (file)
@@ -5002,8 +5002,8 @@ if test "$wxUSE_STACKWALKER" = "yes"; then
 fi
 
 if test "$wxUSE_DEBUGREPORT" = "yes"; then
-    if test "$USE_OS2" = "1"; then
-        AC_MSG_WARN([Creating debug reports not supported under OS/2 yet, disabled])
+    if test "$USE_OS2" = "1" -o "$USE_WIN32" = "1"; then
+        AC_MSG_WARN([Creating debug reports not supported by this compiler, disabled])
         wxUSE_DEBUGREPORT=no
     else
         AC_DEFINE(wxUSE_DEBUGREPORT)