Commit 25de98d7 authored by Anthony Fok's avatar Anthony Fok Committed by Michael Stefaniuc

include: Suppress "use msvcrt" error in tchar.h when -mno-cygwin is used.

Signed-off-by: 's avatarAnthony Fok <foka@debian.org> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org> (cherry picked from commit e034c419) Signed-off-by: 's avatarMichael Stefaniuc <mstefani@winehq.org>
parent 20818f88
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment