]> git.saurik.com Git - wxWidgets.git/commitdiff
Force wxUSE_DEBUGREPORT to disabled for OS/2.
authorStefan Neis <Stefan.Neis@t-online.de>
Mon, 28 Mar 2005 17:59:34 +0000 (17:59 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Mon, 28 Mar 2005 17:59:34 +0000 (17:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33125 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure.in

index e536f89454a570a0f4dbb6cad5cacdc217a6e5b1..92cb26a84baa46c3045cc78132f9a6bcab098553 100644 (file)
@@ -4869,8 +4869,13 @@ if test "$wxUSE_STACKWALKER" = "yes"; then
 fi
 
 if test "$wxUSE_DEBUGREPORT" = "yes"; then
-    AC_DEFINE(wxUSE_DEBUGREPORT)
-    SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS debugrpt"
+    if test "$USE_OS2" = "1"; then
+        AC_MSG_WARN([Creating debug reports not supported under OS/2 yet, disabled])
+        wxUSE_DEBUGREPORT=no
+    else
+        AC_DEFINE(wxUSE_DEBUGREPORT)
+        SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS debugrpt"
+    fi
 fi
 
 if test "$wxUSE_SNGLINST_CHECKER" = "yes"; then