]> git.saurik.com Git - wxWidgets.git/commitdiff
wxUSE_CRASHREPORT and wxUSE_STACKWALKER can't be used if wxUSE_ON_FATAL_EXCEPTION...
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 18 Jan 2005 13:39:08 +0000 (13:39 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 18 Jan 2005 13:39:08 +0000 (13:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31452 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/chkconf.h

index b2ab5e68c5dcf13928875ffe574bbf9876bbdbfa..8aaa475d374431da8ad945b2e3efd3b8a434aceb 100644 (file)
 #           endif
 #       endif
 #   endif  /* wxUSE_DYNAMIC_LOADER */
+
+#   if !wxUSE_ON_FATAL_EXCEPTION
+#       if wxUSE_CRASHREPORT
+#           ifdef wxABORT_ON_CONFIG_ERROR
+#               error "wxUSE_CRASHREPORT requires wxUSE_ON_FATAL_EXCEPTION"
+#           else
+#               undef wxUSE_CRASHREPORT
+#               define wxUSE_CRASHREPORT 0
+#           endif
+#       endif
+
+#       if wxUSE_STACKWALKER
+#           ifdef wxABORT_ON_CONFIG_ERROR
+#               error "wxUSE_STACKWALKER requires wxUSE_ON_FATAL_EXCEPTION"
+#           else
+#               undef wxUSE_STACKWALKER
+#               define wxUSE_STACKWALKER 0
+#           endif
+#       endif
+#   endif /* wxUSE_ON_FATAL_EXCEPTION */
+
 #endif /* wxMSW */
 
 /* wxMAC-specific dependencies */