include: Suppress "use msvcrt" error in tchar.h when -mno-cygwin is used.
Signed-off-by: Anthony Fok <foka@debian.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3dff8bc213
commit
e034c41953
|
@ -23,8 +23,8 @@
|
||||||
#error Wine should not include tchar.h internally
|
#error Wine should not include tchar.h internally
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(_UNICODE) || defined(_MBCS)
|
#if !defined(__MSVCRT__) && (defined(_UNICODE) || defined(_MBCS))
|
||||||
#error You must use msvcrt when building in Unicode/MBCS mode
|
#error You must use msvcrt when building in Unicode/MBCS mode [-mno-cygwin]
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in New Issue