1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/stdcpp/include/config/stl_como.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,209 @@
1.4 +
1.5 +// STLport configuration file
1.6 +// It is internal STLport header - DO NOT include it directly
1.7 +
1.8 +
1.9 +# define _STLP_UINT32_T unsigned int
1.10 +
1.11 +# define _STLP_HAS_NO_NEW_C_HEADERS
1.12 +// # define _STLP_VENDOR_GLOBAL_EXCEPT_STD
1.13 +// # define _STLP_LONG_LONG
1.14 +
1.15 +
1.16 +//
1.17 +// ADDITIONS FOR COMEAU C++, made by Comeau Computing.
1.18 +// We can be reached through comeau@comeaucomputing.com
1.19 +// You shouldn't need to change anything below here for Comeau C++.
1.20 +// If you do, please tell us at comeau@comeaucomputing.com
1.21 +//
1.22 +// Changes made here, AND THROUGH ALL FILES, based upon the __COMO__ macro
1.23 +// (and SIMILAR NAMES INVOLVING COMO).... no doubt some of this will
1.24 +// change as SGI integrates the changes into their code base since
1.25 +// some changes are not really Comeau C++ specific, but required to
1.26 +// make the SGI code compliant with Standard C++).
1.27 +//
1.28 +// Testing was done with Comeau C++ 4.2.44 and 4.2.45.2. Changes were made for
1.29 +// both Comeau relaxed mode and Comeau strict mode, especially for end user code
1.30 +// (that is, some of the .cxx files cannot compile in strict mode, because they
1.31 +// contain extensions to Standard C++, however their object code forms can
1.32 +// be used once compiled in relaxed mode, even if the end user code uses
1.33 +// strict mode).
1.34 +//
1.35 +// These changes may also work for some earlier versions of Comeau C++,
1.36 +// though we have not tested them.
1.37 +//
1.38 +// Actual mods made under RedHat 6.1 LINUX, should be ok with SuSE too and
1.39 +// other LINUX's, and older Caldera LINUX, Solaris/SPARC, SunOS, SCO UNIX,
1.40 +// and NetBSD. Other platforms may be added. Comeau will also perform
1.41 +// custom ports for you.
1.42 +//
1.43 +// Check libcomo details at http://www.comeaucomputing.com/libcomo and
1.44 +// http://www.comeaucomputing.com
1.45 +//
1.46 +// History of Comeau changes (this is rough, as work was often going on in parallel):
1.47 +// BETA1 July 14, 2000, Initial port for RedHat 6.1 INTEL/ELF
1.48 +// BETA2 Aug 4, 2000, Stronger RedHat support
1.49 +// Support for Comeau strict mode for end user code
1.50 +// BETA3 Aug 22, 2000, Support for other LINUX/INTEL/ELF's, including older ones
1.51 +// BETA4 Sept 2, 2000, Initial support for SCO UNIX + other UNIX x86 SVR3's
1.52 +// Stronger support for end user Comeau strict mode
1.53 +// BETA5 Oct 5, 2000, Initial support for Solaris/SPARC
1.54 +// More SCO support (though still incomplete)
1.55 +// BETA6 Feb 5, 2001, Minor mods to accomodate Comeau C++ 4.2.45.1
1.56 +// BETA7 Mar 13, 2001, Verified with Comeau C++ 4.2.45.2
1.57 +// Minor NetBSD support
1.58 +// BETA8 Apr 1. 2001, Initial support for SunOS/SPARC
1.59 +// BETA9 Apr 7, 2001, Stronger SCO support + other UNIX x86 SVR3's
1.60 +// Mods for an fpos_t problem for some LINUXes
1.61 +// Mods since Destroy did not work in strict mode
1.62 +// BETA10 Apr 12. 2001, Stronger NetBSD support
1.63 +//
1.64 +// PLANNED:
1.65 +// BETAx TBA TBA, 2001, NetBSD, UNIXWARE, and Windows support expected
1.66 +//
1.67 +
1.68 +
1.69 +#ifdef __linux__
1.70 +
1.71 +# define _STLP_NO_NATIVE_MBSTATE_T 1
1.72 +# define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
1.73 +# define _STLP_NO_NATIVE_WIDE_STREAMS 1
1.74 +# define _STLP_NO_LONG_DOUBLE 1
1.75 +
1.76 +// Comeau C++ under LINUX/INTEL/ELF
1.77 +// Preprocess away "long long" routines for now, even in relaxed mode
1.78 +# define __wcstoull_internal_defined 1
1.79 +# define __wcstoll_internal_defined 1
1.80 +
1.81 +#endif /* __COMO__ under __linux__ */
1.82 +
1.83 +#ifdef __USING_x86SVR3x_WITH_COMO /* SCO et al */
1.84 +/* UNIX 386+ SVR3 mods made with __USING_x86SVR3x_WITH_COMO
1.85 + in other sources, not here */
1.86 +# define atan2l atan2
1.87 +# define cosl cos
1.88 +# define sinl sin
1.89 +# define sqrtl sqrt
1.90 +# include <math.h>
1.91 + inline long double expl(long double arg) { return exp(arg); }
1.92 + inline long double logl(long double arg) { return log(arg); }
1.93 +# define log10l log10
1.94 +
1.95 +# define sinhl sinh
1.96 +# define coshl cosh
1.97 +# define fabsl fabs
1.98 +namespace std {
1.99 + inline int min(int a, int b) { return a>b ? b : a; }
1.100 +}
1.101 +#endif
1.102 +
1.103 +#ifdef sun
1.104 +// Comeau C++ under Solaris/SPARC or SunOS
1.105 +
1.106 +#ifdef solarissparc
1.107 +#define __USING_SOLARIS_SPARC_WITH_COMO /* show this in the source when grep'ing for COMO */
1.108 +// Note comowchar.h for Solaris/SPARC wchar stuff
1.109 +
1.110 +#include <math.h>
1.111 +# define sinf sin
1.112 +# define sinl sin
1.113 +# define sinhf sinh
1.114 +# define sinhl sinh
1.115 +# define cosf cos
1.116 +# define cosl cos
1.117 +# define coshf cosh
1.118 +# define coshl cosh
1.119 +# define atan2l atan2
1.120 +# define atan2f atan2
1.121 + inline float logf(float arg) { return log(arg); }
1.122 + inline long double logl(long double arg) { return log(arg); }
1.123 +# define log10f log10
1.124 +# define log10l log10
1.125 +# define expf exp
1.126 + inline long double expl(long double arg) { return exp(arg); }
1.127 +# define sqrtf sqrt
1.128 +# define sqrtl sqrt
1.129 +# define fabsf fabs
1.130 +# define fabsl fabs
1.131 +#else
1.132 +#define __USING_SUNOS_WITH_COMO
1.133 +
1.134 +#define __unix 1
1.135 +#define __EXTENSIONS__ /* This might create undue noise somewhere */
1.136 +#endif
1.137 +#endif /* sun */
1.138 +
1.139 +#if defined(__NetBSD__)
1.140 +// From non-como #ifdef __GNUC__ above
1.141 +#undef _STLP_NO_FUNCTION_PTR_IN_CLASS_TEMPLATE
1.142 +#define __unix 1
1.143 +
1.144 +#include <sys/cdefs.h>
1.145 +// Some joker #define'd __END_DECLS as };
1.146 +#undef __END_DECLS
1.147 +#define __END_DECLS }
1.148 +
1.149 +// <sys/stat.h> prob
1.150 +#include <sys/cdefs.h>
1.151 +#undef __RENAME
1.152 +#define __RENAME(x)
1.153 +
1.154 +#define wchar_t __COMO_WCHAR_T
1.155 +#include <stddef.h>
1.156 +#undef wchar_t
1.157 +
1.158 +#include <math.h>
1.159 +# ifdef BORIS_DISABLED
1.160 +# define atan2l atan2
1.161 +# define cosl cos
1.162 +# define sinl sin
1.163 +# define sqrtl sqrt
1.164 + inline long double expl(long double arg) { return exp(arg); }
1.165 + inline long double logl(long double arg) { return log(arg); }
1.166 +# define log10l log10
1.167 +# define sinhl sinh
1.168 +# define coshl cosh
1.169 +# define fabsl fabs
1.170 +# endif
1.171 +#endif /* __NetBSD__ under __COMO__ */
1.172 +
1.173 +// Shouldn't need to change anything below here for Comeau C++
1.174 +// If so, tell us at comeau@comeaucomputing.com
1.175 +
1.176 +#define _STLP_NO_DRAND48
1.177 +
1.178 +#define _STLP_PARTIAL_SPECIALIZATION_SYNTAX
1.179 +#define _STLP_NO_USING_CLAUSE_IN_CLASS
1.180 +
1.181 +
1.182 +#if __COMO_VERSION__ >= 4245
1.183 +#define _STLP_NO_EXCEPTION_HEADER /**/
1.184 +#endif
1.185 +#define _STLP_NO_BAD_ALLOC /**/
1.186 +#define _STLP_USE_AUTO_PTR_CONVERSIONS /**/
1.187 +
1.188 +#if __COMO_VERSION__ >= 4245
1.189 +// Is this needed?
1.190 +#include <stdexcept.stdh>
1.191 +//
1.192 +// ALSO: SEE THE END OF THIS FILE FOR #INCLUDE <IOSTREAM>
1.193 +//
1.194 +#endif
1.195 +
1.196 +// this one is true only with MS
1.197 +# if defined (_MSC_VER)
1.198 +# define _STLP_WCHAR_T_IS_USHORT 1
1.199 +# if _MSC_VER <= 1200
1.200 +# define _STLP_VENDOR_GLOBAL_CSTD
1.201 +# endif
1.202 +# if _MSC_VER < 1100
1.203 +# define _STLP_NO_BAD_ALLOC 1
1.204 +# define _STLP_NO_EXCEPTION_HEADER 1
1.205 +# define _STLP_NO_NEW_NEW_HEADER 1
1.206 +# define _STLP_NO_NEW_IOSTREAMS 1
1.207 +# endif
1.208 +# endif
1.209 +
1.210 +// # define __EDG_SWITCHES
1.211 +
1.212 +