8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 22:43:03 +01:00

We can't check for U_MINGW becaise it is defined in platform.h. Let's rollback a bit

This commit is contained in:
aafemt 2005-06-29 05:22:48 +00:00
parent 6b8c734c32
commit 97999ee007

View File

@ -41,8 +41,8 @@
/* which are contained in the platform-specific file platform.h */ /* which are contained in the platform-specific file platform.h */
/*==========================================================================*/ /*==========================================================================*/
//#if (defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)) #if !defined(RC_INVOKED)
#if (defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)) && !defined(U_MINGW) #if (defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)) && defined(_MSC_VER)
# include "unicode/pwin32.h" # include "unicode/pwin32.h"
#elif defined(__OS400__) #elif defined(__OS400__)
# include "unicode/pos400.h" # include "unicode/pos400.h"
@ -51,6 +51,7 @@
#else #else
# include "unicode/platform.h" # include "unicode/platform.h"
#endif #endif
#endif
/* /*
* ANSI C headers: * ANSI C headers: