diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2004-02-23 03:32:54 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2004-02-23 03:32:54 +0000 |
commit | d5f3af34344340c718d07c9c84d562785443747e (patch) | |
tree | 87ca39a07f491898c292c2900a6bd3aee8134f77 /externals/grill/flext/source | |
parent | 95bf21f70657b8acada4120e51207d64c97445cd (diff) |
""
svn path=/trunk/; revision=1350
Diffstat (limited to 'externals/grill/flext/source')
-rwxr-xr-x | externals/grill/flext/source/flprefix.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/externals/grill/flext/source/flprefix.h b/externals/grill/flext/source/flprefix.h index 71cdaee9..7b39af88 100755 --- a/externals/grill/flext/source/flprefix.h +++ b/externals/grill/flext/source/flprefix.h @@ -237,7 +237,11 @@ WARRANTIES, see the file, "license.txt," in this distribution. #if FLEXT_OS == FLEXT_OS_MAC #define FLEXT_OSAPI FLEXT_OSAPI_MAC_MACH #elif FLEXT_OS == FLEXT_OS_WIN - #define FLEXT_OSAPI FLEXT_OSAPI_WIN_POSIX + #if defined(__MINGW32__) + #define FLEXT_OSAPI FLEXT_OSAPI_WIN_NATIVE + #else + #define FLEXT_OSAPI FLEXT_OSAPI_WIN_POSIX + #endif #elif FLEXT_OS == FLEXT_OS_LINUX || FLEXT_OS == FLEXT_OS_IRIX #define FLEXT_OSAPI FLEXT_OSAPI_UNIX_POSIX #else @@ -249,7 +253,7 @@ WARRANTIES, see the file, "license.txt," in this distribution. // Apple MPW MrCpp #if __MRC__ < 0x500 - #error Apple MPW MrCpp v.5.0.0 or better compiler required + #error Apple MPW MrCpp v.5.0.0 or later compiler required #endif #ifndef FLEXT_CPU |