os/ossrv/stdcpp/include/config/stl_gcc.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/stdcpp/include/config/stl_gcc.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,424 @@
     1.4 +/* STLport configuration file
     1.5 + * It is internal STLport header - DO NOT include it directly
     1.6 + */
     1.7 +
     1.8 +/* Systems having GLIBC installed have different traits */
     1.9 +#if ! defined (_STLP_USE_GLIBC) && ( defined (__linux__) || defined (__CYGWIN__) )
    1.10 +# define _STLP_USE_GLIBC
    1.11 +#endif
    1.12 +
    1.13 +#   if (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 4)
    1.14 +#    define _STLP_NO_MEMBER_TEMPLATE_KEYWORD
    1.15 +#   endif
    1.16 +
    1.17 +
    1.18 +# if defined(__FreeBSD__) || defined (__hpux) || defined(__amigaos__) || ( defined(__OS2__) && defined(__EMX__) )
    1.19 +#  define _STLP_NO_WCHAR_T
    1.20 +# endif
    1.21 +
    1.22 +#ifdef __USLC__
    1.23 +# include <config/stl_sco.h>
    1.24 +#endif
    1.25 +
    1.26 +# if defined (__sun)
    1.27 +
    1.28 +// gcc does not support ELF64 yet ; however; it supports ultrasparc + v8plus.
    1.29 +// limits.h contains invalid values for this combination
    1.30 +# if (defined  (__sparc_v9__) || defined (__sparcv9)) && ! defined ( __WORD64 )
    1.31 +#  define __LONG_MAX__ 2147483647L
    1.32 +# endif
    1.33 +
    1.34 +#  include <config/stl_solaris.h>
    1.35 +# endif
    1.36 +
    1.37 +// no thread support on AmigaOS
    1.38 +#if defined (__amigaos__)
    1.39 +# define _NOTHREADS
    1.40 +# define _STLP_NO_THREADS
    1.41 +#endif
    1.42 +
    1.43 +// azov: gcc on lynx have a bug that causes internal
    1.44 +// compiler errors when compiling STLport with namespaces turned on. 
    1.45 +// When the compiler gets better - comment out _STLP_HAS_NO_NAMESPACES
    1.46 +# if defined (__Lynx__) && (__GNUC__ < 3)
    1.47 +#   define _STLP_HAS_NO_NAMESPACES 1
    1.48 +#   define _STLP_NO_STATIC_TEMPLATE_DATA 1
    1.49 +//  turn off useless warning about including system headers
    1.50 +#   define __NO_INCLUDE_WARN__ 1
    1.51 +# endif
    1.52 +
    1.53 +
    1.54 +/* Tru64 Unix, AIX, HP : gcc there by default uses uses native ld and hence cannot auto-instantiate 
    1.55 +   static template data. If you are using GNU ld, please say so in stl_user_config.h header */    
    1.56 +# if (__GNUC__ < 3) && ! (_STLP_GCC_USES_GNU_LD) && \
    1.57 +   ((defined (__osf__) && defined (__alpha__)) || defined (_AIX) || defined (__hpux) || defined(__amigaos__) )
    1.58 +#   define _STLP_NO_STATIC_TEMPLATE_DATA
    1.59 +# endif
    1.60 +
    1.61 +# if defined(__DJGPP)
    1.62 +#   define _STLP_RAND48		1
    1.63 +#   define _NOTHREADS		1
    1.64 +#   undef  _PTHREADS
    1.65 +#   define _STLP_LITTLE_ENDIAN
    1.66 +# endif 
    1.67 +
    1.68 +# if defined(__MINGW32__)
    1.69 +/* Mingw32, egcs compiler using the Microsoft C runtime */
    1.70 +#   undef  _STLP_NO_DRAND48
    1.71 +#   define _STLP_NO_DRAND48
    1.72 +#   ifdef _MT
    1.73 +#     define _REENTRANT
    1.74 +#   endif
    1.75 +#  define _STLP_IMPORT_DECLSPEC __attribute__((dllimport))
    1.76 +#  define _STLP_EXPORT_DECLSPEC __attribute__((dllexport))
    1.77 +#  define _STLP_CLASS_IMPORT_DECLSPEC __attribute__((dllimport))
    1.78 +#  define _STLP_CLASS_EXPORT_DECLSPEC __attribute__((dllexport))
    1.79 +#  define _STLP_CALL
    1.80 +
    1.81 +#  if defined (_STLP_USE_DYNAMIC_LIB)
    1.82 +#   define _STLP_USE_DECLSPEC 1
    1.83 +// #   define _STLP_USE_TEMPLATE_EXPORT 1
    1.84 +/* Using dynamic library in MinGW requires _STLP_NO_CUSTOM_IO */
    1.85 +# define _STLP_NO_CUSTOM_IO
    1.86 +#  endif
    1.87 +
    1.88 +# endif
    1.89 +
    1.90 +#if defined (__CYGWIN__) || defined (__MINGW32__) || !(defined (_STLP_USE_GLIBC) || defined (__sun)) 
    1.91 +#ifndef __MINGW32__
    1.92 +#   define _STLP_NO_NATIVE_MBSTATE_T      1
    1.93 +#endif
    1.94 +#   define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
    1.95 +#   define _STLP_NO_NATIVE_WIDE_STREAMS   1
    1.96 +# elif defined(__linux__)
    1.97 +#   define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
    1.98 +#   define _STLP_NO_NATIVE_WIDE_STREAMS   1
    1.99 +# elif defined (__sun)
   1.100 +#   define _STLP_WCHAR_BORLAND_EXCLUDE
   1.101 +#   define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
   1.102 +#endif
   1.103 +
   1.104 +/* Mac OS X is a little different with namespaces and cannot instantiate
   1.105 + * static data members in template classes */
   1.106 +# if defined (__APPLE__)
   1.107 +/* Mac OS X is missing a required typedef and standard macro */
   1.108 +typedef unsigned int wint_t;
   1.109 +
   1.110 +#  define __unix
   1.111 +
   1.112 +#   if (__GNUC__ < 3)
   1.113 +
   1.114 + /* Mac OS X needs one and only one source file to initialize all static data
   1.115 +  * members in template classes. Only one source file in an executable or
   1.116 +  * library can declare instances for such data members, otherwise duplicate
   1.117 +  * symbols will be generated. */
   1.118 +
   1.119 +#   define _STLP_NO_STATIC_TEMPLATE_DATA
   1.120 +#   define _STLP_STATIC_CONST_INIT_BUG 1
   1.121 +#   define _STLP_STATIC_TEMPLATE_DATA 0
   1.122 +#   define _STLP_WEAK_ATTRIBUTE 1
   1.123 + /* Workaround for the broken Mac OS X C++ preprocessor which cannot handle
   1.124 +  * parameterized macros in #include statements */
   1.125 +#  define _STLP_NATIVE_HEADER(header) <../g++/##header##>
   1.126 +#  define _STLP_NATIVE_C_HEADER(header) <../include/##header##>
   1.127 +#  define _STLP_NATIVE_CPP_C_HEADER(header) <../g++/##header##>
   1.128 +#  define _STLP_NATIVE_OLD_STREAMS_HEADER(header) <../g++/##header##>
   1.129 +#  define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <../g++/##header##> 
   1.130 +# endif /* __GNUC__ < 3 */
   1.131 +
   1.132 +#   define _STLP_NO_LONG_DOUBLE
   1.133 +
   1.134 +/* Mac OS X needs all "::" scope references to be "std::" */
   1.135 +#define _STLP_USE_NEW_C_HEADERS
   1.136 +# endif
   1.137 +
   1.138 +
   1.139 +# if defined(__BEOS__) && defined(__INTEL__)
   1.140 +#  define _STLP_NATIVE_HEADER(header) <../stlport/beos/##header##>
   1.141 +#  define _STLP_NATIVE_C_HEADER(header) <../stlport/beos/##header##>
   1.142 +#  define _STLP_NATIVE_CPP_C_HEADER(header) <../stlport/beos/##header##>
   1.143 +#  define _STLP_NATIVE_OLD_STREAMS_HEADER(header) <../stlport/beos/##header##>
   1.144 +#  define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <../stlport/beos/##header##>
   1.145 +#  define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
   1.146 +#  define _STLP_NO_NATIVE_WIDE_STREAMS   1
   1.147 +//#  define _NOTHREADS 1
   1.148 +#  ifdef _PTHREADS
   1.149 +#    undef  _PTHREADS
   1.150 +#  endif
   1.151 +#  ifdef _STLP_PTHREADS
   1.152 +#    undef _STLP_PTHREADS
   1.153 +#  endif
   1.154 +#  define _STLP_USE_STDIO_IO 1
   1.155 +#  define _STLP_USE_GLIBC 1
   1.156 +# endif
   1.157 +
   1.158 +
   1.159 +/* g++ 2.7.x and above */
   1.160 +#   define _STLP_LONG_LONG long long 
   1.161 +
   1.162 +#   if (__GNUC__ >= 3)
   1.163 +#    ifndef _STLP_HAS_NO_NEW_C_HEADERS
   1.164 +#     define _STLP_HAS_NATIVE_FLOAT_ABS
   1.165 +#    else
   1.166 +#     ifdef _STLP_USE_GLIBC
   1.167 +#      define _STLP_VENDOR_LONG_DOUBLE_MATH  1 // - ptr: with new c headers no needs
   1.168 +// #      define _STLP_REAL_LOCALE_IMPLEMENTED
   1.169 +#     endif
   1.170 +#    endif
   1.171 +#   endif
   1.172 +
   1.173 +#   if (__GNUC__ < 3)
   1.174 +#    define _STLP_HAS_NO_NEW_C_HEADERS     1
   1.175 +#    define _STLP_VENDOR_GLOBAL_CSTD       1
   1.176 +#    define _STLP_HAS_NO_NEW_IOSTREAMS     1
   1.177 +#    ifndef __HONOR_STD
   1.178 +#     define _STLP_VENDOR_GLOBAL_EXCEPT_STD 1
   1.179 +#    endif
   1.180 +#   endif
   1.181 +
   1.182 +#   if (__GNUC_MINOR__ < 95)  && (__GNUC__ < 3)
   1.183 +/* egcs fails to initialize builtin types in expr. like this : new(p) char();  */
   1.184 +#     define _STLP_DEFAULT_CONSTRUCTOR_BUG 1
   1.185 +#     define _STLP_INCOMPLETE_EXCEPTION_HEADER
   1.186 +#   endif
   1.187 +
   1.188 +#   if (__GNUC_MINOR__ < 9)  && (__GNUC__ < 3) /* gcc 2.8 */
   1.189 +#     define _STLP_NO_TEMPLATE_CONVERSIONS
   1.190 +#     define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
   1.191 +#     define _STLP_NO_FUNCTION_TMPL_PARTIAL_ORDER 1
   1.192 +#     define _STLP_NO_FRIEND_TEMPLATES 1
   1.193 +#     define _STLP_HAS_NO_NAMESPACES 1
   1.194 +#     define _STLP_NO_METHOD_SPECIALIZATION 1
   1.195 +#     define _STLP_NO_MEMBER_TEMPLATES 1
   1.196 +#     define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
   1.197 +#     define _STLP_DONT_SIMULATE_PARTIAL_SPEC_FOR_TYPE_TRAITS
   1.198 +/*  DJGPP doesn't seem to implement it in 2.8.x */
   1.199 +#     ifdef DJGPP
   1.200 +#      define  _STLP_NO_STATIC_TEMPLATE_DATA 1
   1.201 +#     endif
   1.202 +#   endif
   1.203 +
   1.204 +#  if __GNUC__ <= 2 && __GNUC_MINOR__ <= 7 && ! defined (__CYGWIN32__)
   1.205 +/* Will it work with 2.6 ? I doubt it. */
   1.206 +#   if ( __GNUC_MINOR__ < 6 )
   1.207 +    __GIVE_UP_WITH_STL(GCC_272);
   1.208 +#   endif
   1.209 +
   1.210 +# define  _STLP_NO_RELOPS_NAMESPACE
   1.211 +# define  _STLP_NON_TYPE_TMPL_PARAM_BUG
   1.212 +# define  _STLP_LIMITED_DEFAULT_TEMPLATES 1
   1.213 +# define  _STLP_DEFAULT_TYPE_PARAM 1
   1.214 +# define  _STLP_NO_BAD_ALLOC
   1.215 +# define  _STLP_NO_ARROW_OPERATOR 1
   1.216 +# ifndef _STLP_NO_STATIC_TEMPLATE_DATA
   1.217 +#  define  _STLP_NO_STATIC_TEMPLATE_DATA
   1.218 +# endif
   1.219 +# define  _STLP_STATIC_CONST_INIT_BUG 1
   1.220 +# define  _STLP_NO_METHOD_SPECIALIZATION 1
   1.221 +
   1.222 +#  if !defined (__CYGWIN32__) 
   1.223 +#   define _STLP_NESTED_TYPE_PARAM_BUG   1
   1.224 +#   define _STLP_BASE_MATCH_BUG       1
   1.225 +/*  unused operators are required (forward) */
   1.226 +#   define  _STLP_CONST_CONSTRUCTOR_BUG 
   1.227 +#   define _STLP_NO_DEFAULT_NON_TYPE_PARAM
   1.228 +#  endif
   1.229 +#   define _STLP_NO_PARTIAL_SPECIALIZATION_SYNTAX 1
   1.230 +#   define _STLP_NO_EXPLICIT_FUNCTION_TMPL_ARGS 1
   1.231 +#   define _STLP_NO_EXCEPTION_HEADER 1
   1.232 +#  else /* ! <= 2.7.* */
   1.233 +#  endif /* ! <= 2.7.* */
   1.234 +
   1.235 +/* static template data members workaround strategy for gcc tries
   1.236 + * to use weak symbols.
   1.237 + * if you don't want to use that, #define _STLP_WEAK_ATTRIBUTE=0 ( you'll
   1.238 + * have to put "#define __PUT_STATIC_DATA_MEMBERS_HERE" line in one of your
   1.239 + * compilation unit ( or CFLAGS for it ) _before_ including any STL header ).
   1.240 + */
   1.241 +#   if defined (_STLP_NO_STATIC_TEMPLATE_DATA) && ! defined (_STLP_WEAK_ATTRIBUTE )
   1.242 +/* systems using GNU ld or format that supports weak symbols
   1.243 +   may use "weak" attribute
   1.244 +   Linux & Solaris ( x86 & SPARC ) are being auto-recognized here */
   1.245 +#    if defined(_STLP_GNU_LD) || defined(__ELF__) || defined (__CYGWIN__) || \
   1.246 +     (( defined (__SVR4) || defined ( __svr4__ )) && \
   1.247 +      ( defined (sun) || defined ( __sun__ )))
   1.248 +#     define _STLP_WEAK_ATTRIBUTE 1
   1.249 +#    endif
   1.250 +#   endif /* _STLP_WEAK_ATTRIBUTE */
   1.251 +
   1.252 +
   1.253 +/* strict ANSI prohibits "long long" ( gcc) */
   1.254 +#  if defined ( __STRICT_ANSI__ )
   1.255 +#    undef _STLP_LONG_LONG
   1.256 +// #    define _STLP_STRICT_ANSI 1
   1.257 +#  endif
   1.258 +
   1.259 +//# if !defined (__STRICT_ANSI__) || defined (__BUILDING_STLPORT)
   1.260 +//#    define _STLP_USE_TEMPLATE_EXPORT
   1.261 +//#    define _STLP_EXPORT_TEMPLATE_KEYWORD extern
   1.262 +//#    define _STLP_IMPORT_TEMPLATE_KEYWORD extern
   1.263 +//# endif
   1.264 +
   1.265 +#   ifndef __EXCEPTIONS
   1.266 +#     undef  _STLP_HAS_NO_EXCEPTIONS
   1.267 +#     define _STLP_HAS_NO_EXCEPTIONS  1
   1.268 +#   endif
   1.269 +
   1.270 +# if (__GNUC__ >= 3)
   1.271 +
   1.272 +#  if ((__GNUC_MINOR__ == 0) || (__APPLE__))
   1.273 +#   define _STLP_NATIVE_INCLUDE_PATH ../g++-v3
   1.274 +#   define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH ../g++-v3/backward
   1.275 +#  else
   1.276 +#   if defined(__GNUC_PATCHLEVEL__) && (__GNUC_PATCHLEVEL__ > 0)
   1.277 +#     define _STLP_NATIVE_INCLUDE_PATH ../__GNUC__.__GNUC_MINOR__.__GNUC_PATCHLEVEL__
   1.278 +#     define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH ../__GNUC__.__GNUC_MINOR__.__GNUC_PATCHLEVEL__/backward
   1.279 +#   else
   1.280 +#     define _STLP_NATIVE_INCLUDE_PATH ../__GNUC__.__GNUC_MINOR__
   1.281 +#     define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH ../__GNUC__.__GNUC_MINOR__/backward
   1.282 +#   endif
   1.283 +#  endif
   1.284 +
   1.285 +# elif (__GNUC_MINOR__ < 8)
   1.286 +
   1.287 +#  define _STLP_NO_OWN_IOSTREAMS 1
   1.288 +#  undef  _STLP_OWN_IOSTREAMS
   1.289 +#  define _STLP_NATIVE_INCLUDE_PATH ../g++-include
   1.290 +
   1.291 +/* tuning of static template data members workaround */
   1.292 +#  if ( _STLP_STATIC_TEMPLATE_DATA < 1 )
   1.293 +#   if ( _STLP_WEAK_ATTRIBUTE > 0 )
   1.294 +#    define _STLP_WEAK __attribute__ (( weak ))
   1.295 +#   else
   1.296 +#    define _STLP_WEAK
   1.297 +#   endif /* _STLP_WEAK_ATTRIBUTE */
   1.298 +
   1.299 +#   ifdef __PUT_STATIC_DATA_MEMBERS_HERE
   1.300 +#    define __DECLARE_INSTANCE(type,item,init) type item _STLP_WEAK init
   1.301 +#   else
   1.302 +#    define __DECLARE_INSTANCE(type,item,init)
   1.303 +#   endif /* __PUT_STATIC_DATA_MEMBERS_HERE */
   1.304 +#  endif /* _STLP_STATIC_TEMPLATE_DATA */
   1.305 +
   1.306 +# else
   1.307 +
   1.308 +// gcc-2.95.0 used to use "g++-3" directory which has been changed to "g++" in
   1.309 +// system-dependent "include" for 2.95.2 except for Cygwin and Mingw packages.
   1.310 +// I expect "g++-3" not being used in later releases.
   1.311 +// If your installation use "g++-3" include directory for any reason (pre-2.95.2 or Win binary kit),
   1.312 +// please change the macro below to point to your directory. 
   1.313 +
   1.314 +# if defined(__DJGPP)
   1.315 +#   define _STLP_NATIVE_INCLUDE_PATH ../lang/cxx
   1.316 +# elif defined (__SYMBIAN32__)
   1.317 +
   1.318 +#  ifdef _PTHREADS
   1.319 +#    undef  _PTHREADS
   1.320 +#  endif
   1.321 +#  ifdef _STLP_PTHREADS
   1.322 +#    undef _STLP_PTHREADS
   1.323 +#  endif
   1.324 +#  ifdef _STLP_THREADS
   1.325 +#    undef _STLP_THREADS
   1.326 +#  endif
   1.327 +
   1.328 +#   define _STLP_NATIVE_INCLUDE_PATH ../include
   1.329 +#   define _STLP_NATIVE_C_INCLUDE_PATH libc
   1.330 +
   1.331 +#   define _STLP_NO_NEW_HEADER
   1.332 +#   define _STLP_NO_THREADS
   1.333 +
   1.334 +#   define _STLP_NO_EXCEPTIONS
   1.335 +#   define _STLP_USE_TRAP_LEAVE
   1.336 +//#	define _STLP_IMPLICIT_STRING_TO_DESC
   1.337 +
   1.338 +#   define _STLP_NO_EXCEPTION_HEADER
   1.339 +// #   define _STLP_NO_WCHAR_T
   1.340 +#   define _STLP_NO_IOSTREAMS
   1.341 +#   define _STLP_NO_OWN_IOSTREAMS
   1.342 +#   undef  _STLP_OWN_IOSTREAMS
   1.343 +#   define _NOTHREADS
   1.344 +#   define _STLP_USE_NEWALLOC
   1.345 +#   define _STLP_NO_NODE_ALLOC
   1.346 +#   define _STLP_NO_LONG_DOUBLE
   1.347 +#ifdef __SYMBIAN32__
   1.348 +#   define _STLP_LITTLE_ENDIAN
   1.349 +#else
   1.350 +#   define _STLP_BIG_ENDIAN
   1.351 +#endif//__SYMBIAN32__
   1.352 +// this one causes recursive abs() calls
   1.353 +#   define _STLP_LABS
   1.354 +#   define _STLP_LDIV
   1.355 +#   define _STLP_CONST_CONSTRUCTOR_BUG
   1.356 +
   1.357 +// #   define _STLP_HAS_NAMESPACES
   1.358 +
   1.359 +# elif (__GNUC__ >= 3) || (__GNUC_MINOR__ >= 97)
   1.360 +#   define _STLP_NATIVE_INCLUDE_PATH ../include/g++-v3
   1.361 +# elif ((__GNUC_MINOR__ >= 95 && __GNUC_MINOR__ < 97) && !( defined (__FreeBSD__) || defined (__NetBSD__) || defined(__sgi) || defined (__OS2__) ) )
   1.362 +#   define _STLP_NATIVE_INCLUDE_PATH ../g++-3
   1.363 +# elif (__GNUC_MINOR__ > 8) && (__GNUC_MINOR__ < 95) && (__GNUC__ < 3) && !defined( __Lynx__ )
   1.364 +// this really sucks, as GNUpro does not really identifies itself, so we have to guess 
   1.365 +// depending on a platform
   1.366 +#   ifdef __hpux
   1.367 +#    define _STLP_NATIVE_INCLUDE_PATH ../g++-3
   1.368 +#   else
   1.369 +#    define _STLP_NATIVE_INCLUDE_PATH ../g++-2
   1.370 +#   endif
   1.371 +# else
   1.372 +#   define _STLP_NATIVE_INCLUDE_PATH g++
   1.373 +# endif
   1.374 +
   1.375 +// <exception> et al
   1.376 +# ifdef __FreeBSD__
   1.377 +#   if (__GNUC__ > 2) || (__GNUC__ == 2 && __GNUC_MINOR__ > 95)
   1.378 +#     define _STLP_NATIVE_CPP_RUNTIME_INCLUDE_PATH ../include
   1.379 +#   endif
   1.380 +# else
   1.381 +// azov
   1.382 +#   ifdef __Lynx__ 
   1.383 +#     define _STLP_NATIVE_CPP_RUNTIME_INCLUDE_PATH _STLP_NATIVE_INCLUDE_PATH
   1.384 +#   else
   1.385 +#    if (__GNUC__ > 2) || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)
   1.386 +// #     define _STLP_NATIVE_CPP_RUNTIME_INCLUDE_PATH ../g++-v3
   1.387 +#   else
   1.388 +#     define _STLP_NATIVE_CPP_RUNTIME_INCLUDE_PATH ../include
   1.389 +#   endif
   1.390 +#  endif
   1.391 +# endif
   1.392 +
   1.393 +#endif /* GNUC_MINOR < 8 */
   1.394 +
   1.395 +#ifndef __SYMBIAN32__
   1.396 +# define _STLP_NATIVE_CPP_C_INCLUDE_PATH _STLP_NATIVE_INCLUDE_PATH
   1.397 +# define _STLP_NATIVE_C_INCLUDE_PATH ../include
   1.398 +#endif
   1.399 +
   1.400 +
   1.401 +#ifdef _SCO_ELF
   1.402 +# define _STLP_SCO_OPENSERVER
   1.403 +#     if defined(_REENTRANT)
   1.404 +#           define _UITHREADS     /* if      UnixWare < 7.0.1 */
   1.405 +#           define _STLP_UITHREADS
   1.406 +#     endif /* _REENTRANT */
   1.407 +#endif
   1.408 +
   1.409 +// Tune settings for the case where static template data members are not 
   1.410 +// instaniated by default
   1.411 +# if defined ( _STLP_NO_STATIC_TEMPLATE_DATA )
   1.412 +#   define _STLP_STATIC_TEMPLATE_DATA 0
   1.413 +#   if !defined ( _STLP_WEAK_ATTRIBUTE )
   1.414 +#    define _STLP_WEAK_ATTRIBUTE 0
   1.415 +#   endif
   1.416 +#  ifdef __PUT_STATIC_DATA_MEMBERS_HERE
   1.417 +#   define __DECLARE_INSTANCE(type,item,init) type item init
   1.418 +#  else
   1.419 +#   define __DECLARE_INSTANCE(type,item,init)
   1.420 +#  endif
   1.421 +# else
   1.422 +#   define _STLP_STATIC_TEMPLATE_DATA 1
   1.423 +# endif
   1.424 +
   1.425 +
   1.426 +
   1.427 +