sl@0: sl@0: // STLport configuration file sl@0: // It is internal STLport header - DO NOT include it directly sl@0: sl@0: sl@0: # define _STLP_UINT32_T unsigned int sl@0: sl@0: # define _STLP_HAS_NO_NEW_C_HEADERS sl@0: // # define _STLP_VENDOR_GLOBAL_EXCEPT_STD sl@0: // # define _STLP_LONG_LONG sl@0: sl@0: sl@0: // sl@0: // ADDITIONS FOR COMEAU C++, made by Comeau Computing. sl@0: // We can be reached through comeau@comeaucomputing.com sl@0: // You shouldn't need to change anything below here for Comeau C++. sl@0: // If you do, please tell us at comeau@comeaucomputing.com sl@0: // sl@0: // Changes made here, AND THROUGH ALL FILES, based upon the __COMO__ macro sl@0: // (and SIMILAR NAMES INVOLVING COMO).... no doubt some of this will sl@0: // change as SGI integrates the changes into their code base since sl@0: // some changes are not really Comeau C++ specific, but required to sl@0: // make the SGI code compliant with Standard C++). sl@0: // sl@0: // Testing was done with Comeau C++ 4.2.44 and 4.2.45.2. Changes were made for sl@0: // both Comeau relaxed mode and Comeau strict mode, especially for end user code sl@0: // (that is, some of the .cxx files cannot compile in strict mode, because they sl@0: // contain extensions to Standard C++, however their object code forms can sl@0: // be used once compiled in relaxed mode, even if the end user code uses sl@0: // strict mode). sl@0: // sl@0: // These changes may also work for some earlier versions of Comeau C++, sl@0: // though we have not tested them. sl@0: // sl@0: // Actual mods made under RedHat 6.1 LINUX, should be ok with SuSE too and sl@0: // other LINUX's, and older Caldera LINUX, Solaris/SPARC, SunOS, SCO UNIX, sl@0: // and NetBSD. Other platforms may be added. Comeau will also perform sl@0: // custom ports for you. sl@0: // sl@0: // Check libcomo details at http://www.comeaucomputing.com/libcomo and sl@0: // http://www.comeaucomputing.com sl@0: // sl@0: // History of Comeau changes (this is rough, as work was often going on in parallel): sl@0: // BETA1 July 14, 2000, Initial port for RedHat 6.1 INTEL/ELF sl@0: // BETA2 Aug 4, 2000, Stronger RedHat support sl@0: // Support for Comeau strict mode for end user code sl@0: // BETA3 Aug 22, 2000, Support for other LINUX/INTEL/ELF's, including older ones sl@0: // BETA4 Sept 2, 2000, Initial support for SCO UNIX + other UNIX x86 SVR3's sl@0: // Stronger support for end user Comeau strict mode sl@0: // BETA5 Oct 5, 2000, Initial support for Solaris/SPARC sl@0: // More SCO support (though still incomplete) sl@0: // BETA6 Feb 5, 2001, Minor mods to accomodate Comeau C++ 4.2.45.1 sl@0: // BETA7 Mar 13, 2001, Verified with Comeau C++ 4.2.45.2 sl@0: // Minor NetBSD support sl@0: // BETA8 Apr 1. 2001, Initial support for SunOS/SPARC sl@0: // BETA9 Apr 7, 2001, Stronger SCO support + other UNIX x86 SVR3's sl@0: // Mods for an fpos_t problem for some LINUXes sl@0: // Mods since Destroy did not work in strict mode sl@0: // BETA10 Apr 12. 2001, Stronger NetBSD support sl@0: // sl@0: // PLANNED: sl@0: // BETAx TBA TBA, 2001, NetBSD, UNIXWARE, and Windows support expected sl@0: // sl@0: sl@0: sl@0: #ifdef __linux__ sl@0: sl@0: # define _STLP_NO_NATIVE_MBSTATE_T 1 sl@0: # define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1 sl@0: # define _STLP_NO_NATIVE_WIDE_STREAMS 1 sl@0: # define _STLP_NO_LONG_DOUBLE 1 sl@0: sl@0: // Comeau C++ under LINUX/INTEL/ELF sl@0: // Preprocess away "long long" routines for now, even in relaxed mode sl@0: # define __wcstoull_internal_defined 1 sl@0: # define __wcstoll_internal_defined 1 sl@0: sl@0: #endif /* __COMO__ under __linux__ */ sl@0: sl@0: #ifdef __USING_x86SVR3x_WITH_COMO /* SCO et al */ sl@0: /* UNIX 386+ SVR3 mods made with __USING_x86SVR3x_WITH_COMO sl@0: in other sources, not here */ sl@0: # define atan2l atan2 sl@0: # define cosl cos sl@0: # define sinl sin sl@0: # define sqrtl sqrt sl@0: # include sl@0: inline long double expl(long double arg) { return exp(arg); } sl@0: inline long double logl(long double arg) { return log(arg); } sl@0: # define log10l log10 sl@0: sl@0: # define sinhl sinh sl@0: # define coshl cosh sl@0: # define fabsl fabs sl@0: namespace std { sl@0: inline int min(int a, int b) { return a>b ? b : a; } sl@0: } sl@0: #endif sl@0: sl@0: #ifdef sun sl@0: // Comeau C++ under Solaris/SPARC or SunOS sl@0: sl@0: #ifdef solarissparc sl@0: #define __USING_SOLARIS_SPARC_WITH_COMO /* show this in the source when grep'ing for COMO */ sl@0: // Note comowchar.h for Solaris/SPARC wchar stuff sl@0: sl@0: #include sl@0: # define sinf sin sl@0: # define sinl sin sl@0: # define sinhf sinh sl@0: # define sinhl sinh sl@0: # define cosf cos sl@0: # define cosl cos sl@0: # define coshf cosh sl@0: # define coshl cosh sl@0: # define atan2l atan2 sl@0: # define atan2f atan2 sl@0: inline float logf(float arg) { return log(arg); } sl@0: inline long double logl(long double arg) { return log(arg); } sl@0: # define log10f log10 sl@0: # define log10l log10 sl@0: # define expf exp sl@0: inline long double expl(long double arg) { return exp(arg); } sl@0: # define sqrtf sqrt sl@0: # define sqrtl sqrt sl@0: # define fabsf fabs sl@0: # define fabsl fabs sl@0: #else sl@0: #define __USING_SUNOS_WITH_COMO sl@0: sl@0: #define __unix 1 sl@0: #define __EXTENSIONS__ /* This might create undue noise somewhere */ sl@0: #endif sl@0: #endif /* sun */ sl@0: sl@0: #if defined(__NetBSD__) sl@0: // From non-como #ifdef __GNUC__ above sl@0: #undef _STLP_NO_FUNCTION_PTR_IN_CLASS_TEMPLATE sl@0: #define __unix 1 sl@0: sl@0: #include sl@0: // Some joker #define'd __END_DECLS as }; sl@0: #undef __END_DECLS sl@0: #define __END_DECLS } sl@0: sl@0: // prob sl@0: #include sl@0: #undef __RENAME sl@0: #define __RENAME(x) sl@0: sl@0: #define wchar_t __COMO_WCHAR_T sl@0: #include sl@0: #undef wchar_t sl@0: sl@0: #include sl@0: # ifdef BORIS_DISABLED sl@0: # define atan2l atan2 sl@0: # define cosl cos sl@0: # define sinl sin sl@0: # define sqrtl sqrt sl@0: inline long double expl(long double arg) { return exp(arg); } sl@0: inline long double logl(long double arg) { return log(arg); } sl@0: # define log10l log10 sl@0: # define sinhl sinh sl@0: # define coshl cosh sl@0: # define fabsl fabs sl@0: # endif sl@0: #endif /* __NetBSD__ under __COMO__ */ sl@0: sl@0: // Shouldn't need to change anything below here for Comeau C++ sl@0: // If so, tell us at comeau@comeaucomputing.com sl@0: sl@0: #define _STLP_NO_DRAND48 sl@0: sl@0: #define _STLP_PARTIAL_SPECIALIZATION_SYNTAX sl@0: #define _STLP_NO_USING_CLAUSE_IN_CLASS sl@0: sl@0: sl@0: #if __COMO_VERSION__ >= 4245 sl@0: #define _STLP_NO_EXCEPTION_HEADER /**/ sl@0: #endif sl@0: #define _STLP_NO_BAD_ALLOC /**/ sl@0: #define _STLP_USE_AUTO_PTR_CONVERSIONS /**/ sl@0: sl@0: #if __COMO_VERSION__ >= 4245 sl@0: // Is this needed? sl@0: #include sl@0: // sl@0: // ALSO: SEE THE END OF THIS FILE FOR #INCLUDE sl@0: // sl@0: #endif sl@0: sl@0: // this one is true only with MS sl@0: # if defined (_MSC_VER) sl@0: # define _STLP_WCHAR_T_IS_USHORT 1 sl@0: # if _MSC_VER <= 1200 sl@0: # define _STLP_VENDOR_GLOBAL_CSTD sl@0: # endif sl@0: # if _MSC_VER < 1100 sl@0: # define _STLP_NO_BAD_ALLOC 1 sl@0: # define _STLP_NO_EXCEPTION_HEADER 1 sl@0: # define _STLP_NO_NEW_NEW_HEADER 1 sl@0: # define _STLP_NO_NEW_IOSTREAMS 1 sl@0: # endif sl@0: # endif sl@0: sl@0: // # define __EDG_SWITCHES sl@0: sl@0: