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
|
||||
#endif
|
||||
|
||||
#if defined(_UNICODE) || defined(_MBCS)
|
||||
#error You must use msvcrt when building in Unicode/MBCS mode
|
||||
#if !defined(__MSVCRT__) && (defined(_UNICODE) || defined(_MBCS))
|
||||
#error You must use msvcrt when building in Unicode/MBCS mode [-mno-cygwin]
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Reference in New Issue