X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1663afc01111eefebd1243035432462ab9a6d2be..b8be0b4e05e283708b15fe04c9d534a1b649d1cb:/include/wx/chkconf.h diff --git a/include/wx/chkconf.h b/include/wx/chkconf.h index b3620c8eb8..1cd1afe460 100644 --- a/include/wx/chkconf.h +++ b/include/wx/chkconf.h @@ -19,6 +19,24 @@ */ #define wxABORT_ON_CONFIG_ERROR +/* + global features + */ + +/* GUI build by default */ +#if !defined(wxUSE_GUI) +# define wxUSE_GUI 1 +#endif /* !defined(wxUSE_GUI) */ + +/* wxBase doesn't need compatibility settings as it's a new port */ +#if !wxUSE_GUI +# undef WXWIN_COMPATIBILITY +# undef WXWIN_COMPATIBILITY_2 +# undef WXWIN_COMPATIBILITY_2_2 +# define WXWIN_COMPATIBILITY 0 +# define WXWIN_COMPATIBILITY_2 0 +# define WXWIN_COMPATIBILITY_2_2 0 +#endif /* !wxUSE_GUI */ /* tests for non GUI features @@ -32,6 +50,11 @@ # endif #endif /* !defined(wxUSE_DYNLIB_CLASS) */ +/* don't give an error about this one yet, it's not fully implemented */ +#ifndef wxUSE_FSVOLUME +# define wxUSE_FSVOLUME 0 +#endif /* !defined(wxUSE_FSVOLUME) */ + #ifndef wxUSE_DYNAMIC_LOADER # ifdef wxABORT_ON_CONFIG_ERROR # error "wxUSE_DYNAMIC_LOADER must be defined."