diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2008-01-30 11:47:24 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2008-01-30 11:47:24 -0330 |
commit | e3131517d46f1144d87ef9d70a830b1532f351b2 (patch) | |
tree | e935427ce06b0f9c7e858a7adb1c86c65e032988 /cppe/include | |
parent | using Java5 types in Ice core; general cleanup (diff) | |
download | ice-e3131517d46f1144d87ef9d70a830b1532f351b2.tar.bz2 ice-e3131517d46f1144d87ef9d70a830b1532f351b2.tar.xz ice-e3131517d46f1144d87ef9d70a830b1532f351b2.zip |
Updated INSTALL files
Diffstat (limited to 'cppe/include')
-rw-r--r-- | cppe/include/IceE/Config.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/cppe/include/IceE/Config.h b/cppe/include/IceE/Config.h index db4049e5483..f632d4b8714 100644 --- a/cppe/include/IceE/Config.h +++ b/cppe/include/IceE/Config.h @@ -61,6 +61,13 @@ #endif // +// Blackfin does not support wstring. +// +#if defined(__BFIN__) +#undef ICEE_HAS_WSTRING +#endif + +// // Use poll()/WSAEventSelect for timeouts. // // Using WSAEventSelect for timeouts on Windows is necessary because @@ -97,13 +104,14 @@ // of Itanium (IA64) and MIPS. // #if defined(__i386) || defined(_M_IX86) || defined (__x86_64) || \ - defined (_M_ARM) || defined(__MIPSEL__) || defined (__ARMEL__) + defined (_M_ARM) || defined(__MIPSEL__) || defined (__ARMEL__) || \ + defined (__BFIN__) # define ICE_LITTLE_ENDIAN #elif defined(__sparc) || defined(__sparc__) || defined(__hppa) || \ defined(__ppc__) || defined(_ARCH_COM) || defined(__MIPSEB__) # define ICE_BIG_ENDIAN #else -# error "Unknown architecture" +# define ICE_LITTLE_ENDIAN #endif // |