silently ignore wxUSE_UNICODE_MSLU in non-Unicode builds (see also rev 1.106 of wx/chkconf.h)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34569 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -34,26 +34,38 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We don't want to give an error if wxUSE_UNICODE_MSLU is enabled but
|
||||||
|
* wxUSE_UNICODE is not as this would make it impossible to simply set the
|
||||||
|
* former in wx/setup.h as then the library wouldn't compile in non-Unicode
|
||||||
|
* configurations, so instead simply unset it silently when it doesn't make
|
||||||
|
* sense.
|
||||||
|
*/
|
||||||
|
#if wxUSE_UNICODE_MSLU && !wxUSE_UNICODE
|
||||||
|
# undef wxUSE_UNICODE_MSLU
|
||||||
|
# define wxUSE_UNICODE_MSLU 0
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* All of the settings below require SEH support (__try/__catch) and can't work
|
* All of the settings below require SEH support (__try/__catch) and can't work
|
||||||
* without it.
|
* without it.
|
||||||
*/
|
*/
|
||||||
#if !defined(_MSC_VER) && \
|
#if !defined(_MSC_VER) && \
|
||||||
(!defined(__BORLANDC__) || __BORLANDC__ < 0x0550)
|
(!defined(__BORLANDC__) || __BORLANDC__ < 0x0550)
|
||||||
#undef wxUSE_ON_FATAL_EXCEPTION
|
# undef wxUSE_ON_FATAL_EXCEPTION
|
||||||
#define wxUSE_ON_FATAL_EXCEPTION 0
|
# define wxUSE_ON_FATAL_EXCEPTION 0
|
||||||
|
|
||||||
#undef wxUSE_CRASHREPORT
|
# undef wxUSE_CRASHREPORT
|
||||||
#define wxUSE_CRASHREPORT 0
|
# define wxUSE_CRASHREPORT 0
|
||||||
|
|
||||||
#undef wxUSE_STACKWALKER
|
# undef wxUSE_STACKWALKER
|
||||||
#define wxUSE_STACKWALKER 0
|
# define wxUSE_STACKWALKER 0
|
||||||
#endif // compiler doesn't support SEH
|
#endif // compiler doesn't support SEH
|
||||||
|
|
||||||
/* wxUSE_DEBUG_NEW_ALWAYS doesn't work with CodeWarrior */
|
/* wxUSE_DEBUG_NEW_ALWAYS doesn't work with CodeWarrior */
|
||||||
#if defined(__MWERKS__)
|
#if defined(__MWERKS__)
|
||||||
#undef wxUSE_DEBUG_NEW_ALWAYS
|
# undef wxUSE_DEBUG_NEW_ALWAYS
|
||||||
#define wxUSE_DEBUG_NEW_ALWAYS 0
|
# define wxUSE_DEBUG_NEW_ALWAYS 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__GNUWIN32__)
|
#if defined(__GNUWIN32__)
|
||||||
@@ -87,14 +99,14 @@
|
|||||||
#endif /* wxUSE_MFC */
|
#endif /* wxUSE_MFC */
|
||||||
|
|
||||||
#if (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)
|
#if (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)
|
||||||
/* GnuWin32 doesn't have appropriate headers for e.g. IUnknown. */
|
/* GnuWin32 doesn't have appropriate headers for e.g. IUnknown. */
|
||||||
#undef wxUSE_DRAG_AND_DROP
|
# undef wxUSE_DRAG_AND_DROP
|
||||||
#define wxUSE_DRAG_AND_DROP 0
|
# define wxUSE_DRAG_AND_DROP 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__)
|
#if !wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__)
|
||||||
#undef wxUSE_CHECKLISTBOX
|
# undef wxUSE_CHECKLISTBOX
|
||||||
#define wxUSE_CHECKLISTBOX 0
|
# define wxUSE_CHECKLISTBOX 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if wxUSE_SPINCTRL
|
#if wxUSE_SPINCTRL
|
||||||
@@ -128,14 +140,13 @@
|
|||||||
|
|
||||||
/* DMC++ doesn't have definitions for date picker control, so use generic control
|
/* DMC++ doesn't have definitions for date picker control, so use generic control
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef __DMC__
|
#ifdef __DMC__
|
||||||
#if wxUSE_DATEPICKCTRL
|
# if wxUSE_DATEPICKCTRL
|
||||||
#undef wxUSE_DATEPICKCTRL_GENERIC
|
# undef wxUSE_DATEPICKCTRL_GENERIC
|
||||||
#undef wxUSE_DATEPICKCTRL
|
# undef wxUSE_DATEPICKCTRL
|
||||||
#endif
|
# endif
|
||||||
#define wxUSE_DATEPICKCTRL 0
|
# define wxUSE_DATEPICKCTRL 0
|
||||||
#define wxUSE_DATEPICKCTRL_GENERIC 1
|
# define wxUSE_DATEPICKCTRL_GENERIC 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* _WX_MSW_CHKCONF_H_ */
|
#endif /* _WX_MSW_CHKCONF_H_ */
|
||||||
|
Reference in New Issue
Block a user