Tweeked config options for Kai and Irix+STLPort

[SVN r9000]
This commit is contained in:
John Maddock
2001-02-07 11:56:13 +00:00
parent bc4755e14f
commit ff022f31cf

View File

@ -338,16 +338,22 @@ Do not change this file unless you really really have to, add options to
#ifdef __sgi // SGI IRIX C++
#define BOOST_RE_NO_SWPRINTF
#if defined(__SGI_STL_PORT) && (__SGI_STL_PORT <= 0x400)
#if defined(__SGI_STL_PORT)
// STLPort on IRIX is misconfigured: <cwctype> does not compile
// as a temporary fix include <wctype.h> instead and prevent inclusion
// of STLPort version of <cwctype>
#include <wctype.h>
#define __STLPORT_CWCTYPE
#define BOOST_RE_NO_WCTYPE_H
#endif
#endif
#if defined __KCC
// Kai 3.4 appears to have no wide character string support:
# if __KCC_VERSION <= 3499
# define BOOST_RE_NO_WCSTRING
# endif
#endif
#endif // BOOST_RE_AUTO_CONFIGURE
@ -1280,5 +1286,6 @@ namespace std{