os/ossrv/stdcpp/include/config/stl_como.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
sl@0
     2
// STLport configuration file
sl@0
     3
// It is internal STLport header - DO NOT include it directly
sl@0
     4
sl@0
     5
sl@0
     6
# define _STLP_UINT32_T unsigned int
sl@0
     7
sl@0
     8
# define _STLP_HAS_NO_NEW_C_HEADERS
sl@0
     9
// # define _STLP_VENDOR_GLOBAL_EXCEPT_STD
sl@0
    10
// # define _STLP_LONG_LONG
sl@0
    11
sl@0
    12
sl@0
    13
//
sl@0
    14
// ADDITIONS FOR COMEAU C++, made by Comeau Computing.
sl@0
    15
// We can be reached through comeau@comeaucomputing.com
sl@0
    16
// You shouldn't need to change anything below here for Comeau C++.
sl@0
    17
// If you do, please tell us at comeau@comeaucomputing.com
sl@0
    18
//
sl@0
    19
// Changes made here, AND THROUGH ALL FILES, based upon the __COMO__ macro
sl@0
    20
// (and SIMILAR NAMES INVOLVING COMO).... no doubt some of this will
sl@0
    21
// change as SGI integrates the changes into their code base since
sl@0
    22
// some changes are not really Comeau C++ specific, but required to
sl@0
    23
// make the SGI code compliant with Standard C++).
sl@0
    24
//
sl@0
    25
// Testing was done with Comeau C++ 4.2.44 and 4.2.45.2.  Changes were made for
sl@0
    26
// both Comeau relaxed mode and Comeau strict mode, especially for end user code
sl@0
    27
// (that is, some of the .cxx files cannot compile in strict mode, because they
sl@0
    28
// contain extensions to Standard C++, however their object code forms can
sl@0
    29
// be used once compiled in relaxed mode, even if the end user code uses
sl@0
    30
// strict mode).
sl@0
    31
//
sl@0
    32
// These changes may also work for some earlier versions of Comeau C++,
sl@0
    33
// though we have not tested them.
sl@0
    34
//
sl@0
    35
// Actual mods made under RedHat 6.1 LINUX, should be ok with SuSE too and
sl@0
    36
// other LINUX's, and older Caldera LINUX, Solaris/SPARC, SunOS, SCO UNIX,
sl@0
    37
// and NetBSD. Other platforms may be added.  Comeau will also perform
sl@0
    38
// custom ports for you.
sl@0
    39
//
sl@0
    40
// Check libcomo details at http://www.comeaucomputing.com/libcomo and
sl@0
    41
// http://www.comeaucomputing.com
sl@0
    42
//
sl@0
    43
// History of Comeau changes (this is rough, as work was often going on in parallel):
sl@0
    44
// BETA1 July 14, 2000, Initial port for RedHat 6.1 INTEL/ELF
sl@0
    45
// BETA2 Aug   4, 2000, Stronger RedHat support
sl@0
    46
//                      Support for Comeau strict mode for end user code
sl@0
    47
// BETA3 Aug  22, 2000, Support for other LINUX/INTEL/ELF's, including older ones
sl@0
    48
// BETA4 Sept  2, 2000, Initial support for SCO UNIX + other UNIX x86 SVR3's
sl@0
    49
//                      Stronger support for end user Comeau strict mode
sl@0
    50
// BETA5 Oct   5, 2000, Initial support for Solaris/SPARC
sl@0
    51
//                      More SCO support (though still incomplete)
sl@0
    52
// BETA6 Feb   5, 2001, Minor mods to accomodate Comeau C++ 4.2.45.1
sl@0
    53
// BETA7 Mar  13, 2001, Verified with Comeau C++ 4.2.45.2
sl@0
    54
//                      Minor NetBSD support
sl@0
    55
// BETA8 Apr   1. 2001, Initial support for SunOS/SPARC
sl@0
    56
// BETA9 Apr   7, 2001, Stronger SCO support + other UNIX x86 SVR3's
sl@0
    57
//                      Mods for an fpos_t problem for some LINUXes
sl@0
    58
//                      Mods since Destroy did not work in strict mode
sl@0
    59
// BETA10 Apr  12. 2001, Stronger NetBSD support
sl@0
    60
//
sl@0
    61
// PLANNED:
sl@0
    62
// BETAx TBA  TBA, 2001, NetBSD, UNIXWARE, and Windows support expected
sl@0
    63
//
sl@0
    64
sl@0
    65
sl@0
    66
#ifdef __linux__
sl@0
    67
sl@0
    68
#   define _STLP_NO_NATIVE_MBSTATE_T      1
sl@0
    69
#   define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
sl@0
    70
#   define _STLP_NO_NATIVE_WIDE_STREAMS   1
sl@0
    71
#   define _STLP_NO_LONG_DOUBLE   1
sl@0
    72
sl@0
    73
// Comeau C++ under LINUX/INTEL/ELF
sl@0
    74
// Preprocess away "long long" routines for now, even in relaxed mode
sl@0
    75
# define __wcstoull_internal_defined	1
sl@0
    76
# define __wcstoll_internal_defined	1
sl@0
    77
sl@0
    78
#endif /* __COMO__ under __linux__ */
sl@0
    79
sl@0
    80
#ifdef __USING_x86SVR3x_WITH_COMO /* SCO et al */
sl@0
    81
/* UNIX 386+ SVR3 mods made with __USING_x86SVR3x_WITH_COMO
sl@0
    82
   in other sources, not here */
sl@0
    83
#    define atan2l atan2
sl@0
    84
#    define cosl cos
sl@0
    85
#    define sinl sin
sl@0
    86
#    define sqrtl sqrt
sl@0
    87
#    include <math.h>
sl@0
    88
     inline long double expl(long double arg) { return exp(arg); }
sl@0
    89
     inline long double logl(long double arg) { return log(arg); }
sl@0
    90
#    define log10l log10
sl@0
    91
sl@0
    92
#    define sinhl sinh
sl@0
    93
#    define coshl cosh
sl@0
    94
#    define fabsl fabs
sl@0
    95
namespace std {
sl@0
    96
 inline int min(int a, int b) { return a>b ? b : a; }
sl@0
    97
}
sl@0
    98
#endif
sl@0
    99
sl@0
   100
#ifdef sun
sl@0
   101
// Comeau C++ under Solaris/SPARC or SunOS
sl@0
   102
sl@0
   103
#ifdef solarissparc
sl@0
   104
#define __USING_SOLARIS_SPARC_WITH_COMO /* show this in the source when grep'ing for COMO */
sl@0
   105
// Note comowchar.h for Solaris/SPARC wchar stuff
sl@0
   106
sl@0
   107
#include <math.h>
sl@0
   108
#    define sinf sin
sl@0
   109
#    define sinl sin
sl@0
   110
#    define sinhf sinh
sl@0
   111
#    define sinhl sinh
sl@0
   112
#    define cosf cos
sl@0
   113
#    define cosl cos
sl@0
   114
#    define coshf cosh
sl@0
   115
#    define coshl cosh
sl@0
   116
#    define atan2l atan2
sl@0
   117
#    define atan2f atan2
sl@0
   118
     inline float logf(float arg) { return log(arg); }
sl@0
   119
     inline long double logl(long double arg) { return log(arg); }
sl@0
   120
#    define log10f log10
sl@0
   121
#    define log10l log10
sl@0
   122
#    define expf exp
sl@0
   123
     inline long double expl(long double arg) { return exp(arg); }
sl@0
   124
#    define sqrtf sqrt
sl@0
   125
#    define sqrtl sqrt
sl@0
   126
#    define fabsf fabs
sl@0
   127
#    define fabsl fabs
sl@0
   128
#else
sl@0
   129
#define __USING_SUNOS_WITH_COMO
sl@0
   130
sl@0
   131
#define __unix 1
sl@0
   132
#define __EXTENSIONS__ /* This might create undue noise somewhere */
sl@0
   133
#endif
sl@0
   134
#endif /* sun */
sl@0
   135
sl@0
   136
#if defined(__NetBSD__)
sl@0
   137
// From non-como #ifdef __GNUC__ above
sl@0
   138
#undef _STLP_NO_FUNCTION_PTR_IN_CLASS_TEMPLATE
sl@0
   139
#define __unix 1
sl@0
   140
sl@0
   141
#include <sys/cdefs.h>
sl@0
   142
// Some joker #define'd __END_DECLS as };
sl@0
   143
#undef __END_DECLS
sl@0
   144
#define __END_DECLS }
sl@0
   145
sl@0
   146
// <sys/stat.h> prob
sl@0
   147
#include <sys/cdefs.h>
sl@0
   148
#undef __RENAME
sl@0
   149
#define __RENAME(x)
sl@0
   150
sl@0
   151
#define wchar_t __COMO_WCHAR_T
sl@0
   152
#include <stddef.h>
sl@0
   153
#undef wchar_t
sl@0
   154
sl@0
   155
#include <math.h>
sl@0
   156
# ifdef BORIS_DISABLED
sl@0
   157
#    define atan2l atan2
sl@0
   158
#    define cosl cos
sl@0
   159
#    define sinl sin
sl@0
   160
#    define sqrtl sqrt
sl@0
   161
     inline long double expl(long double arg) { return exp(arg); }
sl@0
   162
     inline long double logl(long double arg) { return log(arg); }
sl@0
   163
#    define log10l log10
sl@0
   164
#    define sinhl sinh
sl@0
   165
#    define coshl cosh
sl@0
   166
#    define fabsl fabs
sl@0
   167
# endif
sl@0
   168
#endif /* __NetBSD__ under __COMO__ */
sl@0
   169
sl@0
   170
// Shouldn't need to change anything below here for Comeau C++
sl@0
   171
// If so, tell us at comeau@comeaucomputing.com
sl@0
   172
sl@0
   173
#define _STLP_NO_DRAND48
sl@0
   174
sl@0
   175
#define _STLP_PARTIAL_SPECIALIZATION_SYNTAX
sl@0
   176
#define _STLP_NO_USING_CLAUSE_IN_CLASS
sl@0
   177
sl@0
   178
sl@0
   179
#if __COMO_VERSION__ >= 4245
sl@0
   180
#define _STLP_NO_EXCEPTION_HEADER /**/
sl@0
   181
#endif
sl@0
   182
#define _STLP_NO_BAD_ALLOC /**/
sl@0
   183
#define _STLP_USE_AUTO_PTR_CONVERSIONS /**/
sl@0
   184
sl@0
   185
#if __COMO_VERSION__ >= 4245
sl@0
   186
// Is this needed?
sl@0
   187
#include <stdexcept.stdh>
sl@0
   188
//
sl@0
   189
// ALSO: SEE THE END OF THIS FILE FOR #INCLUDE <IOSTREAM>
sl@0
   190
//
sl@0
   191
#endif
sl@0
   192
sl@0
   193
// this one is true only with MS
sl@0
   194
# if defined (_MSC_VER)
sl@0
   195
#  define _STLP_WCHAR_T_IS_USHORT 1
sl@0
   196
#  if _MSC_VER <= 1200
sl@0
   197
#   define _STLP_VENDOR_GLOBAL_CSTD
sl@0
   198
#  endif
sl@0
   199
#  if _MSC_VER < 1100
sl@0
   200
#   define _STLP_NO_BAD_ALLOC 1
sl@0
   201
#   define _STLP_NO_EXCEPTION_HEADER 1
sl@0
   202
#   define _STLP_NO_NEW_NEW_HEADER 1
sl@0
   203
#   define _STLP_NO_NEW_IOSTREAMS 1
sl@0
   204
#  endif
sl@0
   205
# endif
sl@0
   206
sl@0
   207
// # define __EDG_SWITCHES
sl@0
   208
sl@0
   209