os/ossrv/stdcpp/include/config/stl_ibm.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_ibm.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,139 @@
     1.4 +// STLport configuration file
     1.5 +// It is internal STLport header - DO NOT include it directly
     1.6 +
     1.7 +#if !defined(__IBMCPP__) || (__IBMCPP__ < 500)
     1.8 +# define _STLP_HAS_NO_NEW_C_HEADERS 1
     1.9 +#endif
    1.10 +
    1.11 +// string literal problem, same as with SUN and aCC
    1.12 +# define _STLP_INLINE_STRING_LITERAL_BUG 1
    1.13 +# define _STLP_HAS_NATIVE_FLOAT_ABS
    1.14 +
    1.15 +#  define _STLP_DEFAULT_CONSTRUCTOR_BUG 1
    1.16 +
    1.17 +
    1.18 +# ifdef __IBMCPP__
    1.19 +#  define _STLP_HAS_SPECIFIC_PROLOG_EPILOG
    1.20 +# endif
    1.21 +
    1.22 +// #  if ( defined (__MULTI__) && defined (__WINDOWS__))
    1.23 +// #   define  _STLP_WIN32THREADS 1          // Only Visual Age 3.5 for Windows
    1.24 +// #  endif
    1.25 +
    1.26 +#  if ( defined (__MULTI__) && defined (__OS2__))
    1.27 +#   define _STLP_OS2THREADS 1
    1.28 +#  endif
    1.29 +
    1.30 +// __TEMPINC__ is set when /Ft+ option is used
    1.31 +#  ifdef __TEMPINC__
    1.32 +#    define _STLP_LINK_TIME_INSTANTIATION 1
    1.33 +#  endif
    1.34 +
    1.35 +# if defined (__MVS__)
    1.36 +// long long support is buggy - reported by Tinny Ng
    1.37 +// #  if __EXTENDED__ && __COMPILER_VER__ >= 0x22060000
    1.38 +// #   define _STLP_LONG_LONG long long
    1.39 +// #  endif
    1.40 +// boris : hstash reported it can be treated like UNIX
    1.41 +#  define _STLP_UNIX 1
    1.42 +#  define _STLP_NO_TYPEINFO 1
    1.43 +#  undef _STLP_NATIVE_INCLUDE_PATH
    1.44 +#  define _STLP_NATIVE_INCLUDE_PATH /usr/lpp/ioclib/include
    1.45 +// same for C headers like <string.h>
    1.46 +#  undef _STLP_NATIVE_C_INCLUDE_PATH
    1.47 +#  define _STLP_NATIVE_C_INCLUDE_PATH /usr/include
    1.48 +#  define _STLP_NATIVE_CPP_RUNTIME_INCLUDE_PATH /usr/include
    1.49 +
    1.50 +# elif (defined (__WINDOWS__) || defined (_AIX) || defined (__OS2__) ) && (__IBMCPP__ >= 350)
    1.51 +
    1.52 +#  define _STLP_LONG_LONG long long
    1.53 +
    1.54 +#endif
    1.55 +
    1.56 +#if !( defined( __xlC__ ) && __xlC__ >= 0x500 )
    1.57 +
    1.58 +// AIX xlC 3.1 , 3.0.1 ==0x301
    1.59 +// Visual Age C++ 3.x
    1.60 +// OS-390 C++
    1.61 +// fbp : should be more version-specific!
    1.62 +
    1.63 +#  define _STLP_NO_BOOL 1
    1.64 +#  define _STLP_DONT_USE_BOOL_TYPEDEF 1
    1.65 +#  define _STLP_LIMITED_DEFAULT_TEMPLATES 1
    1.66 +#  define _STLP_HAS_NO_NAMESPACES 1
    1.67 +#  define _STLP_NEED_TYPENAME 1
    1.68 +#  define _STLP_NEED_EXPLICIT 1
    1.69 +#  define _STLP_NO_ARROW_OPERATOR 1
    1.70 +#  define _STLP_NO_NEW_STYLE_CASTS 1
    1.71 +#  define _STLP_NO_WCHAR_T 1
    1.72 +#  define _STLP_NEED_MUTABLE 1
    1.73 +#  define _STLP_NO_PARTIAL_SPECIALIZATION_SYNTAX 1
    1.74 +#  define _STLP_NO_BAD_ALLOC 1
    1.75 +
    1.76 +#  define _STLP_NO_MEMBER_TEMPLATES 1
    1.77 +#  define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
    1.78 +#  define _STLP_NO_MEMBER_TEMPLATE_KEYWORD 1
    1.79 +#  define _STLP_NO_FRIEND_TEMPLATES 1
    1.80 +#  define _STLP_NO_QUALIFIED_FRIENDS 1
    1.81 +#  define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
    1.82 +#  define _STLP_NO_FUNCTION_TMPL_PARTIAL_ORDER 1
    1.83 +
    1.84 +#  define _STLP_NO_DEFAULT_NON_TYPE_PARAM 1
    1.85 +#  define _STLP_NO_METHOD_SPECIALIZATION 1
    1.86 +#  define _STLP_NO_EXPLICIT_FUNCTION_TMPL_ARGS 1
    1.87 +#  define _STLP_NO_EXCEPTION_HEADER 1
    1.88 +
    1.89 +#  define _STLP_HAS_NO_NEW_IOSTREAMS 1
    1.90 +#  define _STLP_NO_NEW_NEW_HEADER 1
    1.91 +
    1.92 +#  if defined (__OS2__) && (__IBMCPP__ <= 350)
    1.93 +#   define _STLP_NO_TYPEINFO 1
    1.94 +#  endif
    1.95 +#  define _STLP_NO_NEW_NEW_HEADER 1
    1.96 +
    1.97 +#  define _STLP_STATIC_CONST_INIT_BUG 1
    1.98 +// #  define _STLP_THROW_RETURN_BUG 1
    1.99 +
   1.100 +
   1.101 +#  define _STLP_NO_TEMPLATE_CONVERSIONS 1
   1.102 +#  define _STLP_UNINITIALIZABLE_PRIVATE 1
   1.103 +#  define _STLP_BASE_TYPEDEF_OUTSIDE_BUG 1
   1.104 +#  define _STLP_STATIC_ARRAY_BUG 1
   1.105 +
   1.106 +// AIX xlC, Visual Age 3.0 for OS/2 and MS 
   1.107 +#  define _STLP_TRIVIAL_DESTRUCTOR_BUG
   1.108 +
   1.109 +#  define _STLP_NON_TYPE_TMPL_PARAM_BUG 1
   1.110 +#  define _STLP_NONTEMPL_BASE_MATCH_BUG 1
   1.111 +
   1.112 +#if __IBMCPP__ <= 350
   1.113 +#  define _STLP_NEED_UNREACHABLE_RETURN 1
   1.114 +#endif
   1.115 +
   1.116 +#if __IBMCPP__ < 350
   1.117 +#  define _STLP_NO_LONG_DOUBLE 1
   1.118 +#endif
   1.119 +
   1.120 +#if __IBMCPP__ >= 365
   1.121 +// does not have new C headers, but has div()
   1.122 +#  define _STLP_LDIV
   1.123 +#endif
   1.124 +
   1.125 +#endif /* xlC 5 */
   1.126 +
   1.127 +/* detect xlC5 by: */
   1.128 +#if defined(__IBMCPP__) && (500 <= __IBMCPP__) && (__IBMCPP__ < 700)
   1.129 +// #define _STLP_USE_EXCEPTIONS 1
   1.130 +# define _STLP_STATIC_CONST_INIT_BUG 1 
   1.131 +//#pragma report(disable,CPPC1500029)
   1.132 +// unsigned 32-bit integer type
   1.133 +#  define _STLP_UINT32_T unsigned int
   1.134 +#if defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 >= 4)
   1.135 +# define _STLP_RAND48 1
   1.136 +#endif
   1.137 +// #  define _STLP_RAND48 1
   1.138 +# endif /* __IBMCPP__ == 500 */
   1.139 +
   1.140 +
   1.141 +
   1.142 +