removed corrected detection of wchar_t under Mac OS X (added in revision 1.355)

since there only seem to be stub functions (no wcslen available)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12100 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2001-10-19 21:13:06 +00:00
parent 0d53fc3442
commit 5d6c436536
2 changed files with 277 additions and 305 deletions

573
configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -2378,14 +2378,7 @@ AC_CACHE_CHECK([for wchar_t], wx_cv_type_wchar_t,
ws = L"Hello, world!";
],
wx_cv_type_wchar_t=yes,
AC_TRY_COMPILE([#include <stdlib.h>],
[
wchar_t wc, *ws;
wc = L'a';
ws = L"Hello, world!";
],
wx_cv_type_wchar_t=yes,
wx_cv_type_wchar_t=no)
wx_cv_type_wchar_t=no
)
])