MinGW has tchar.h, but it does not include wchar.h as wxchar.h expects,

hence we include it explicitly.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17815 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon
2002-11-10 21:07:42 +00:00
parent eb8a028c10
commit 6df6345a73

View File

@@ -81,8 +81,9 @@
#include <stdarg.h>
// non Unix compilers which do have wchar.h (but not tchar.h which is included
// below and which includes wchar.h anyhow)
#if defined(__MWERKS__) || defined(__VISAGECPP__)
// below and which includes wchar.h anyhow).
// Actually MinGW has tchar.h, but it does not include wchar.h
#if defined(__MWERKS__) || defined(__VISAGECPP__) || defined(__MINGW32__)
#ifndef HAVE_WCHAR_H
#define HAVE_WCHAR_H
#endif