1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/stdcpp/include/config/stl_hpacc.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,218 @@
1.4 +// STLport configuration file
1.5 +// It is internal STLport header - DO NOT include it directly
1.6 +
1.7 +// system C-library dependent
1.8 +#if defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 >= 4)
1.9 +# define _STLP_RAND48 1
1.10 +#endif
1.11 +// # define _STLP_RAND48 1
1.12 +# define _STLP_NO_NATIVE_MBSTATE_T 1
1.13 +# define _STLP_HPACC_BROKEN_BUFEND 1
1.14 +# define _STLP_WCHAR_HPACC_EXCLUDE 1
1.15 +
1.16 +// this was reported to help, just as with SUN CC 4.2
1.17 +# define _STLP_INLINE_STRING_LITERAL_BUG
1.18 +
1.19 +
1.20 +// specific prolog is needed to select correct threads impl
1.21 +# define _STLP_HAS_SPECIFIC_PROLOG_EPILOG
1.22 +
1.23 +// HP aCC with +noeh
1.24 +# ifdef __HPACC_NOEH
1.25 +# define _STLP_HAS_NO_EXCEPTIONS 1
1.26 +# endif
1.27 +
1.28 +// HP compilers
1.29 +// At that point, we only know we are on HP (and _not_ using gcc,
1.30 +// according to "stlcomp.h"
1.31 +
1.32 +// __HP_aCC indicate HP ANSI C++, but not always (03.xx does not
1.33 +// define it before 3.13, for example).
1.34 +//
1.35 +# if defined(__HP_aCC)
1.36 +
1.37 +# if __HP_aCC < 33100
1.38 +# define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH ../iostream
1.39 +# else
1.40 +# define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH ../include/iostream
1.41 +# endif
1.42 +
1.43 +# define _STLP_LONG_LONG long long
1.44 +
1.45 +#if (__HP_aCC <= 30000 && __HP_aCC >= 12100)
1.46 +
1.47 +//Special kludge to workaround bug in aCC A.01.23, CR JAGac40634
1.48 +#ifdef _STLP_DEBUG
1.49 +static void _STLP_dummy_literal() { const char *p = "x";}
1.50 +static void _STLP_dummy_literal_2() { const char *p = "123456789"; }
1.51 +static void _STLP_dummy_literal_3() { const char *p = "123456700000000000000089";}
1.52 +#endif
1.53 +
1.54 +# define _STLP_HP_ACC 0123
1.55 +# define _STLP_NATIVE_INCLUDE_PATH ../include
1.56 +# define _STLP_NATIVE_C_INCLUDE_PATH ../include
1.57 +# define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include
1.58 +# define _STLP_VENDOR_GLOBAL_STD 1
1.59 +# define _STLP_VENDOR_GLOBAL_CSTD 1
1.60 +# define _STLP_HAS_NO_NEW_IOSTREAMS 1
1.61 +# define _STLP_DONT_THROW_RANGE_ERRORS 1
1.62 +# define _STLP_STATIC_CONST_INIT_BUG 1
1.63 +#if (__HP_aCC < 12700)
1.64 +//new flag: on most HP compilers cwchar is missing
1.65 +# define _STLP_NO_CWCHAR
1.66 +#endif
1.67 +
1.68 +# define _STLP_FORCE_ALLOCATORS(t,a) \
1.69 + typedef typename _Alloc_traits<t,a>::_Orig _STLP_dummy_type1;\
1.70 + typedef typename _STLP_dummy_type1:: _STLP_TEMPLATE rebind<t>::other _STLP_dummy_type2;
1.71 +
1.72 +# endif /* 123 */
1.73 +
1.74 +// latest version and up
1.75 +# if (__HP_aCC >= 32500 )
1.76 +# define _STLP_HP_ACC 0325
1.77 +
1.78 +# define _STLP_FORCE_ALLOCATORS(t,a) \
1.79 + typedef typename _Alloc_traits<t,a>::_Orig _STLP_dummy_type1;\
1.80 + typedef typename _STLP_dummy_type1:: _STLP_TEMPLATE rebind<t>::other _STLP_dummy_type2;
1.81 +
1.82 +# if !defined( _INCLUDE__STDC_A1_SOURCE ) // HP-UX 11i only
1.83 +# define _STLP_HAS_NO_UNIX98_WCHAR_EXTENSIONS
1.84 +# endif
1.85 +
1.86 +# if defined(_HP_NAMESPACE_STD) // option -AA
1.87 +// from now, we have a full standard lib in namespace std
1.88 +//
1.89 +// -AA indicates that we are compiling against Rogue Wave 2.2.1
1.90 +// STL shipped with the HP aCC compiler. -AA tells the compiler
1.91 +// to use the STL defined in the include_std directory.
1.92 +//
1.93 +# define _STLP_NATIVE_INCLUDE_PATH ../include_std
1.94 +# define _STLP_NATIVE_C_INCLUDE_PATH ../include_std
1.95 +# define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include_std
1.96 +
1.97 +// # define _STLP_HPACC_ONLY_NATIVE_STRING 1 // STLPort _string.c includes <locale>
1.98 +# define _STLP_HP_ACC_COMPAT -1
1.99 +# else // option -Aa
1.100 +# define _STLP_NATIVE_INCLUDE_PATH ../include
1.101 +# define _STLP_NATIVE_C_INCLUDE_PATH ../include
1.102 +# define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include
1.103 +# define _STLP_VENDOR_GLOBAL_STD 1
1.104 +# define _STLP_VENDOR_GLOBAL_CSTD 1
1.105 +# define _STLP_HAS_NO_NEW_IOSTREAMS 1
1.106 +// Add the following in _site_config.h if "-Wc,-koenig_lookup,on" not used
1.107 +//# define _STLP_NO_KOENIG_LOOKUP 1
1.108 +# define _STLP_DONT_THROW_RANGE_ERRORS 1
1.109 +# endif /* _NAMESPACE_STD */
1.110 +# endif
1.111 +
1.112 +# if (__HP_aCC >= 31400 && __HP_aCC < 32500)
1.113 +# define _STLP_HP_ACC 0314
1.114 +
1.115 +# define _STLP_FORCE_ALLOCATORS(t,a) \
1.116 +typedef typename _Alloc_traits<t,a>::_Orig _STLP_dummy_type1;\
1.117 +typedef typename _STLP_dummy_type1:: _STLP_TEMPLATE rebind<t>::other _STLP_dummy_type2;
1.118 +# define _STLP_NO_CWCHAR
1.119 +# if defined(_NAMESPACE_STD) // option -AA
1.120 +// from now, we have a full standard lib in namespace std
1.121 +# define _STLP_NATIVE_INCLUDE_PATH ../include_std
1.122 +# define _STLP_NATIVE_C_INCLUDE_PATH ../include_std
1.123 +# define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include_std
1.124 +// # define _STLP_HPACC_ONLY_NATIVE_STRING 1 // STLPort _string.c includes <locale>
1.125 +# define _STLP_HP_ACC_COMPAT -1
1.126 +# else // kind of compatibility mode
1.127 +# define _STLP_NATIVE_INCLUDE_PATH ../include
1.128 +# define _STLP_NATIVE_C_INCLUDE_PATH ../include
1.129 +# define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include
1.130 +# define _STLP_VENDOR_GLOBAL_STD 1
1.131 +# define _STLP_VENDOR_GLOBAL_CSTD 1
1.132 +# define _STLP_HAS_NO_NEW_IOSTREAMS 1
1.133 +// comment if "-Wc,-koenig_lookup,on" id used
1.134 +# define _STLP_NO_KOENIG_LOOKUP 1
1.135 +# define _STLP_DONT_THROW_RANGE_ERRORS 1
1.136 +# define _STLP_NO_ROPE 1
1.137 +# endif /* _NAMESPACE_STD */
1.138 +# endif /* 314 */
1.139 +
1.140 +# if ((__HP_aCC >= 30000 && __HP_aCC < 31400) || (__HP_aCC == 1)) // A.03.13: __HP_aCC == 1
1.141 +
1.142 +#if (__HP_aCC != 1)
1.143 +# define _STLP_HAS_NO_NEW_C_HEADERS 1
1.144 +#endif
1.145 +
1.146 +# define _STLP_HAS_NO_NEW_IOSTREAMS
1.147 +# define _STLP_NO_QUALIFIED_FRIENDS 1
1.148 +// aCC bug ? need explicit args on constructors of partial specialized
1.149 +// classes
1.150 +# define _STLP_PARTIAL_SPEC_NEEDS_TEMPLATE_ARGS 1
1.151 +// ?? fbp: really needed ?
1.152 +# define _STLP_STATIC_ARRAY_BUG 1
1.153 +// ?? fbp : maybe present in some versions ?
1.154 +# define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
1.155 +# define _STLP_NO_MEMBER_TEMPLATE_KEYWORD 1
1.156 +// <exception> and stuff is in global namespace
1.157 +# define _STLP_VENDOR_GLOBAL_EXCEPT_STD
1.158 +// fbp : moved here
1.159 +# define _STLP_VENDOR_GLOBAL_CSTD 1
1.160 +// # define _INCLUDE_HPUX_SOURCE
1.161 +# define _XPG4
1.162 +# define _INCLUDE_XOPEN_SOURCE
1.163 +# define _INCLUDE_AES_SOURCE
1.164 +# endif /* < 314 */
1.165 +# if __HP_aCC == 1
1.166 +# define _STLP_BROKEN_USING_IN_CLASS
1.167 +# define _STLP_USING_BASE_MEMBER
1.168 +# define _STLP_NO_CWCHAR
1.169 +// # define _STLP_NO_WCHAR_T 1
1.170 +# endif
1.171 +# endif /* HP_ACC */
1.172 +
1.173 +//
1.174 +# ifndef __HP_aCC
1.175 +# define _STLP_NATIVE_INCLUDE_PATH ../CC
1.176 +# define _STLP_NATIVE_C_INCLUDE_PATH ../include
1.177 +// it is HP's old cfront-based compiler.
1.178 +# define _STLP_NO_BOOL 1
1.179 +// # define _STLP_DONT_USE_BOOL_TYPEDEF 1
1.180 +# define _STLP_NO_NEW_NEW_HEADER 1
1.181 +# define _STLP_HAS_NO_NEW_IOSTREAMS 1
1.182 +# define _STLP_LIMITED_DEFAULT_TEMPLATES 1
1.183 +# define _STLP_NO_SIGNED_BUILTINS
1.184 +# define _STLP_HAS_NO_NAMESPACES 1
1.185 +# define _STLP_NEED_TYPENAME 1
1.186 +# define _STLP_NEED_EXPLICIT 1
1.187 +# define _STLP_NO_EXCEPTION_SPEC 1
1.188 +# define _STLP_NONTEMPL_BASE_MATCH_BUG 1
1.189 +# define _STLP_NO_ARROW_OPERATOR 1
1.190 +# define _STLP_BASE_MATCH_BUG
1.191 +# define _STLP_BASE_TYPEDEF_OUTSIDE_BUG 1
1.192 +# define _STLP_NO_NEW_STYLE_CASTS 1
1.193 +// # define _STLP_NO_WCHAR_T 1
1.194 +// # define _STLP_LONG_LONG long long
1.195 +# define _STLP_NEED_MUTABLE 1
1.196 +# define _STLP_NO_PARTIAL_SPECIALIZATION_SYNTAX 1
1.197 +# define _STLP_NO_BAD_ALLOC 1
1.198 +# define _STLP_NO_MEMBER_TEMPLATES 1
1.199 +# define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
1.200 +# define _STLP_NO_MEMBER_TEMPLATE_KEYWORD 1
1.201 +# define _STLP_NO_FRIEND_TEMPLATES 1
1.202 +# define _STLP_NO_QUALIFIED_FRIENDS 1
1.203 +# define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
1.204 +# define _STLP_NO_FUNCTION_TMPL_PARTIAL_ORDER 1
1.205 +# define _STLP_MEMBER_POINTER_PARAM_BUG 1
1.206 +# define _STLP_NON_TYPE_TMPL_PARAM_BUG 1
1.207 +# define _STLP_NO_DEFAULT_NON_TYPE_PARAM 1
1.208 +// # define _STLP_NO_METHOD_SPECIALIZATION 1
1.209 +# define _STLP_NO_EXPLICIT_FUNCTION_TMPL_ARGS 1
1.210 +# define _STLP_NO_EXCEPTION_HEADER 1
1.211 +# define _STLP_DEFAULT_CONSTRUCTOR_BUG 1
1.212 +# define _STLP_HAS_NO_NEW_C_HEADERS 1
1.213 +// # define _STLP_STATIC_CONST_INIT_BUG 1
1.214 +// # define _STLP_THROW_RETURN_BUG 1
1.215 +// # define _STLP_LINK_TIME_INSTANTIATION 1
1.216 +// # define _STLP_NO_TEMPLATE_CONVERSIONS 1
1.217 +# define _STLP_NO_TYPEINFO 1
1.218 +# define _STLP_WCHAR_T_IS_USHORT 1
1.219 +
1.220 +# endif /* cfront */
1.221 +