From: Ove Kaaven Date: Mon, 26 Apr 1999 10:33:43 +0000 (+0000) Subject: Heavier checks for wxUSE_WCHAR_T X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a89ae1e4859c401c5d29ef2007571b4cd66aba4b Heavier checks for wxUSE_WCHAR_T git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2285 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/wxchar.h b/include/wx/wxchar.h index 6b44b31fad..065cd7da36 100644 --- a/include/wx/wxchar.h +++ b/include/wx/wxchar.h @@ -205,15 +205,22 @@ inline WORD __wxMSW_ctype(wxChar ch) // check whether we should include wchar.h or equivalent #if wxUSE_UNICODE -#undef wxUSE_WCHAR_T -#define wxUSE_WCHAR_T 1 // wchar_t *must* be available in Unicode mode + #undef wxUSE_WCHAR_T + #define wxUSE_WCHAR_T 1 // wchar_t *must* be available in Unicode mode #elif !defined(wxUSE_WCHAR_T) -#if defined(__VISUALC__) && (__VISUALC__ < 900) -#define wxUSE_WCHAR_T 0 // wchar_t is not available for MSVC++ 1.5 -#else -#define wxUSE_WCHAR_T 1 -#endif -#endif + #if defined(__VISUALC__) && (__VISUALC__ < 900) + #define wxUSE_WCHAR_T 0 // wchar_t is not available for MSVC++ 1.5 + #elif defined(__UNIX__) + #if defined(HAVE_WCSTR_H) || defined(HAVE_WCHAR_H) + #define wxUSE_WCHAR_T 1 + #else + #define wxUSE_WCHAR_T 0 + #endif + #else + // add additional compiler checks if this fails + #define wxUSE_WCHAR_T 1 + #endif +#endif//wxUSE_UNICODE #if wxUSE_WCHAR_T #ifdef HAVE_WCSTR_H