X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/599132d33a6ea61e76f75e211fa414f15052a4cf..622c5145868017d50b47e812d9f30ade57da289d:/include/wx/msw/chkconf.h?ds=sidebyside diff --git a/include/wx/msw/chkconf.h b/include/wx/msw/chkconf.h index c6765eb50b..b0d3e253e3 100644 --- a/include/wx/msw/chkconf.h +++ b/include/wx/msw/chkconf.h @@ -36,13 +36,20 @@ #endif /* - * GCC does not have SEH (__try/__catch) + * All of the settings below require SEH support (__try/__catch) and can't work + * without it. */ - -#if defined(__GNUG__) +#if !defined(_MSC_VER) && \ + (!defined(__BORLANDC__) || __BORLANDC__ < 0x0550) #undef wxUSE_ON_FATAL_EXCEPTION #define wxUSE_ON_FATAL_EXCEPTION 0 -#endif + + #undef wxUSE_CRASHREPORT + #define wxUSE_CRASHREPORT 0 + + #undef wxUSE_STACKWALKER + #define wxUSE_STACKWALKER 0 +#endif // compiler doesn't support SEH /* * wxUSE_DEBUG_NEW_ALWAYS doesn't work with CodeWarrior @@ -96,6 +103,17 @@ #define wxUSE_CHECKLISTBOX 0 #endif +#if wxUSE_SPINCTRL +# if !wxUSE_SPINBTN +# ifdef wxABORT_ON_CONFIG_ERROR +# error "wxSpinCtrl requires wxSpinButton on MSW" +# else +# undef wxUSE_SPINBTN +# define wxUSE_SPINBTN 1 +# endif +# endif +#endif + #if defined(__BORLANDC__) && (__BORLANDC__ < 0x500) /* BC++ 4.0 can't compile JPEG library */ #undef wxUSE_LIBJPEG @@ -123,6 +141,14 @@ #endif #endif +/* Disable controls for pointing devices */ +#if defined(__SMARTPHONE__) + #undef wxUSE_NOTEBOOK + #undef wxUSE_LISTBOOK + #define wxUSE_NOTEBOOK 0 + #define wxUSE_LISTBOOK 0 +#endif + #endif /* _WX_MSW_CHKCONF_H_ */