#ifndef _WX_MSW_CHKCONF_H_
#define _WX_MSW_CHKCONF_H_
+/* ensure that MSW-specific settings are defined */
+#ifndef wxUSE_DC_CACHEING
+# ifdef wxABORT_ON_CONFIG_ERROR
+# error "wxUSE_DC_CACHEING must be defined"
+# else
+# define wxUSE_DC_CACHEING 1
+# endif
+#endif /* wxUSE_DC_CACHEING */
+
+
/*
* disable the settings which don't work for some compilers
*/
#endif /* __GNUWIN32__ */
+/* wxUSE_MFC is not defined when using configure as it doesn't make sense for
+ gcc or mingw32 anyhow */
+#ifndef wxUSE_MFC
+ #define wxUSE_MFC 0
+#endif /* !defined(wxUSE_MFC) */
+
/* MFC duplicates these operators */
#if wxUSE_MFC
# undef wxUSE_GLOBAL_MEMORY_OPERATORS
# define wxUSE_DATEPICKCTRL_GENERIC 1
#endif
+#ifndef wxUSE_UNICODE_MSLU
+# ifdef wxABORT_ON_CONFIG_ERROR
+# error "wxUSE_UNICODE_MSLU must be defined."
+# else
+# define wxUSE_UNICODE_MSLU 0
+# endif
+#endif /* wxUSE_UNICODE_MSLU */
+
+#ifndef wxUSE_UXTHEME
+# ifdef wxABORT_ON_CONFIG_ERROR
+# error "wxUSE_UXTHEME must be defined."
+# else
+# define wxUSE_UXTHEME 0
+# endif
+#endif /* wxUSE_UXTHEME */
+
+#ifndef wxUSE_UXTHEME_AUTO
+# ifdef wxABORT_ON_CONFIG_ERROR
+# error "wxUSE_UXTHEME_AUTO must be defined."
+# else
+# define wxUSE_UXTHEME_AUTO 0
+# endif
+#endif /* wxUSE_UXTHEME_AUTO */
+
+#ifndef wxUSE_MS_HTML_HELP
+# ifdef wxABORT_ON_CONFIG_ERROR
+# error "wxUSE_MS_HTML_HELP must be defined."
+# else
+# define wxUSE_MS_HTML_HELP 0
+# endif
+#endif /* !defined(wxUSE_MS_HTML_HELP) */
+
+#ifndef wxUSE_DIALUP_MANAGER
+# ifdef wxABORT_ON_CONFIG_ERROR
+# error "wxUSE_DIALUP_MANAGER must be defined."
+# else
+# define wxUSE_DIALUP_MANAGER 0
+# endif
+#endif /* !defined(wxUSE_DIALUP_MANAGER) */
+
+#if !wxUSE_DYNAMIC_LOADER
+# if wxUSE_MS_HTML_HELP
+# ifdef wxABORT_ON_CONFIG_ERROR
+# error "wxUSE_MS_HTML_HELP requires wxUSE_DYNAMIC_LOADER."
+# else
+# define wxUSE_MS_HTML_HELP 0
+# endif
+# endif
+# if wxUSE_DIALUP_MANAGER
+# ifdef wxABORT_ON_CONFIG_ERROR
+# error "wxUSE_DIALUP_MANAGER requires wxUSE_DYNAMIC_LOADER."
+# else
+# undef wxUSE_DIALUP_MANAGER
+# define wxUSE_DIALUP_MANAGER 0
+# endif
+# endif
+#endif /* wxUSE_DYNAMIC_LOADER */
+
#endif /* _WX_MSW_CHKCONF_H_ */