X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aa62256a06ba983b8be0e5265bdeb07d9b8ed043..6cf5edea273b08316390683a17851a2437103da4:/include/wx/chkconf.h diff --git a/include/wx/chkconf.h b/include/wx/chkconf.h index d6e14f326d..eb67a29a56 100644 --- a/include/wx/chkconf.h +++ b/include/wx/chkconf.h @@ -49,7 +49,7 @@ this global setting determines what should we do if the setting FOO requires BAR and BAR is not set: we can either silently unset FOO as well (do this if you're trying to build the smallest possible library) or give an - error and abort (default as leads to least surprizing behaviour) + error and abort (default as leads to least surprising behaviour) */ #define wxABORT_ON_CONFIG_ERROR @@ -145,6 +145,14 @@ # endif #endif /* !defined(wxUSE_FSVOLUME) */ +#ifndef wxUSE_FSWATCHER +# ifdef wxABORT_ON_CONFIG_ERROR +# error "wxUSE_FSWATCHER must be defined, please read comment near the top of this file." +# else +# define wxUSE_FSWATCHER 0 +# endif +#endif /* !defined(wxUSE_FSWATCHER) */ + #ifndef wxUSE_DYNAMIC_LOADER # ifdef wxABORT_ON_CONFIG_ERROR # error "wxUSE_DYNAMIC_LOADER must be defined, please read comment near the top of this file." @@ -423,6 +431,18 @@ # endif #endif /* !defined(wxUSE_BUTTON) */ +/* + This one is special, it's only used under wxGTK currently so don't require + pre-defining it. + */ +#ifndef wxUSE_CAIRO +# ifdef __WXGTK210__ +# define wxUSE_CAIRO 1 +# else +# define wxUSE_CAIRO 0 +# endif +#endif + #ifndef wxUSE_CALENDARCTRL # ifdef wxABORT_ON_CONFIG_ERROR # error "wxUSE_CALENDARCTRL must be defined, please read comment near the top of this file."