os/ossrv/stdcpp/include/config/stl_hpacc.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// STLport configuration file
sl@0
     2
// It is internal STLport header - DO NOT include it directly
sl@0
     3
sl@0
     4
// system C-library dependent
sl@0
     5
#if defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 >= 4)
sl@0
     6
# define _STLP_RAND48 1
sl@0
     7
#endif
sl@0
     8
// #  define _STLP_RAND48 1
sl@0
     9
#  define _STLP_NO_NATIVE_MBSTATE_T      1
sl@0
    10
#  define _STLP_HPACC_BROKEN_BUFEND       1
sl@0
    11
#  define _STLP_WCHAR_HPACC_EXCLUDE      1
sl@0
    12
sl@0
    13
// this was reported to help, just as with SUN CC 4.2
sl@0
    14
# define _STLP_INLINE_STRING_LITERAL_BUG
sl@0
    15
sl@0
    16
sl@0
    17
// specific prolog is needed to select correct threads impl
sl@0
    18
#  define _STLP_HAS_SPECIFIC_PROLOG_EPILOG
sl@0
    19
sl@0
    20
// HP aCC with +noeh
sl@0
    21
#  ifdef __HPACC_NOEH
sl@0
    22
#   define _STLP_HAS_NO_EXCEPTIONS 1
sl@0
    23
#  endif
sl@0
    24
sl@0
    25
// HP compilers
sl@0
    26
// At that point, we only know we are on HP (and _not_ using gcc,
sl@0
    27
// according to "stlcomp.h"
sl@0
    28
sl@0
    29
// __HP_aCC indicate HP ANSI C++, but not always (03.xx does not
sl@0
    30
// define it before 3.13, for example).
sl@0
    31
//
sl@0
    32
#  if defined(__HP_aCC)
sl@0
    33
sl@0
    34
# if __HP_aCC < 33100
sl@0
    35
#   define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH ../iostream
sl@0
    36
# else
sl@0
    37
#   define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH ../include/iostream
sl@0
    38
# endif
sl@0
    39
sl@0
    40
#   define _STLP_LONG_LONG long long
sl@0
    41
sl@0
    42
#if (__HP_aCC <= 30000 && __HP_aCC >= 12100)
sl@0
    43
sl@0
    44
//Special kludge to workaround bug in aCC A.01.23, CR JAGac40634
sl@0
    45
#ifdef _STLP_DEBUG
sl@0
    46
static void _STLP_dummy_literal() { const char *p = "x";}
sl@0
    47
static void _STLP_dummy_literal_2() { const char *p = "123456789"; }
sl@0
    48
static void _STLP_dummy_literal_3() { const char *p = "123456700000000000000089";}
sl@0
    49
#endif
sl@0
    50
sl@0
    51
#     define _STLP_HP_ACC                   0123
sl@0
    52
#     define _STLP_NATIVE_INCLUDE_PATH       ../include
sl@0
    53
#     define _STLP_NATIVE_C_INCLUDE_PATH     ../include
sl@0
    54
#     define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include
sl@0
    55
#     define _STLP_VENDOR_GLOBAL_STD         1
sl@0
    56
#     define _STLP_VENDOR_GLOBAL_CSTD        1
sl@0
    57
#     define _STLP_HAS_NO_NEW_IOSTREAMS      1
sl@0
    58
#     define _STLP_DONT_THROW_RANGE_ERRORS   1
sl@0
    59
#     define _STLP_STATIC_CONST_INIT_BUG 1
sl@0
    60
#if (__HP_aCC  < 12700)
sl@0
    61
//new flag: on most HP compilers cwchar is missing
sl@0
    62
#     define _STLP_NO_CWCHAR
sl@0
    63
#endif
sl@0
    64
sl@0
    65
#     define _STLP_FORCE_ALLOCATORS(t,a) \
sl@0
    66
  typedef typename _Alloc_traits<t,a>::_Orig _STLP_dummy_type1;\
sl@0
    67
  typedef typename _STLP_dummy_type1:: _STLP_TEMPLATE rebind<t>::other _STLP_dummy_type2;
sl@0
    68
sl@0
    69
#   endif /* 123 */
sl@0
    70
sl@0
    71
// latest version and up
sl@0
    72
#   if (__HP_aCC >= 32500 )
sl@0
    73
#     define _STLP_HP_ACC                   0325
sl@0
    74
sl@0
    75
#     define _STLP_FORCE_ALLOCATORS(t,a) \
sl@0
    76
  typedef typename _Alloc_traits<t,a>::_Orig _STLP_dummy_type1;\
sl@0
    77
  typedef typename _STLP_dummy_type1:: _STLP_TEMPLATE rebind<t>::other _STLP_dummy_type2;
sl@0
    78
sl@0
    79
# if !defined( _INCLUDE__STDC_A1_SOURCE ) // HP-UX 11i only
sl@0
    80
#  define _STLP_HAS_NO_UNIX98_WCHAR_EXTENSIONS
sl@0
    81
# endif
sl@0
    82
sl@0
    83
#    if defined(_HP_NAMESPACE_STD) // option -AA
sl@0
    84
// from now, we have a full standard lib in namespace std
sl@0
    85
//
sl@0
    86
// -AA indicates that we are compiling against Rogue Wave 2.2.1
sl@0
    87
// STL shipped with the HP aCC compiler. -AA tells the compiler
sl@0
    88
// to use the STL defined in the include_std directory.
sl@0
    89
//
sl@0
    90
# define _STLP_NATIVE_INCLUDE_PATH ../include_std
sl@0
    91
# define _STLP_NATIVE_C_INCLUDE_PATH ../include_std
sl@0
    92
# define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include_std
sl@0
    93
sl@0
    94
// #      define _STLP_HPACC_ONLY_NATIVE_STRING 1 // STLPort _string.c includes <locale>
sl@0
    95
#     define _STLP_HP_ACC_COMPAT            -1
sl@0
    96
#    else // option -Aa
sl@0
    97
#     define _STLP_NATIVE_INCLUDE_PATH       ../include
sl@0
    98
#     define _STLP_NATIVE_C_INCLUDE_PATH     ../include
sl@0
    99
#     define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include
sl@0
   100
#     define _STLP_VENDOR_GLOBAL_STD         1
sl@0
   101
#     define _STLP_VENDOR_GLOBAL_CSTD        1
sl@0
   102
#     define _STLP_HAS_NO_NEW_IOSTREAMS      1
sl@0
   103
// Add the following in _site_config.h if "-Wc,-koenig_lookup,on" not used
sl@0
   104
//#     define _STLP_NO_KOENIG_LOOKUP          1
sl@0
   105
#     define _STLP_DONT_THROW_RANGE_ERRORS   1
sl@0
   106
#    endif /* _NAMESPACE_STD */
sl@0
   107
#   endif
sl@0
   108
sl@0
   109
#   if (__HP_aCC >= 31400 && __HP_aCC < 32500)
sl@0
   110
#     define _STLP_HP_ACC                   0314
sl@0
   111
sl@0
   112
# define _STLP_FORCE_ALLOCATORS(t,a) \
sl@0
   113
typedef typename _Alloc_traits<t,a>::_Orig _STLP_dummy_type1;\
sl@0
   114
typedef typename _STLP_dummy_type1:: _STLP_TEMPLATE rebind<t>::other _STLP_dummy_type2;
sl@0
   115
#     define _STLP_NO_CWCHAR
sl@0
   116
#    if defined(_NAMESPACE_STD) // option -AA
sl@0
   117
// from now, we have a full standard lib in namespace std
sl@0
   118
#      define _STLP_NATIVE_INCLUDE_PATH       ../include_std
sl@0
   119
#      define _STLP_NATIVE_C_INCLUDE_PATH     ../include_std
sl@0
   120
#      define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include_std
sl@0
   121
// #      define _STLP_HPACC_ONLY_NATIVE_STRING 1 // STLPort _string.c includes <locale>
sl@0
   122
#     define _STLP_HP_ACC_COMPAT            -1
sl@0
   123
#    else // kind of compatibility mode
sl@0
   124
#     define _STLP_NATIVE_INCLUDE_PATH       ../include
sl@0
   125
#     define _STLP_NATIVE_C_INCLUDE_PATH     ../include
sl@0
   126
#     define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include
sl@0
   127
#     define _STLP_VENDOR_GLOBAL_STD         1
sl@0
   128
#     define _STLP_VENDOR_GLOBAL_CSTD        1
sl@0
   129
#     define _STLP_HAS_NO_NEW_IOSTREAMS      1
sl@0
   130
// comment if  "-Wc,-koenig_lookup,on" id used
sl@0
   131
#     define _STLP_NO_KOENIG_LOOKUP          1
sl@0
   132
#     define _STLP_DONT_THROW_RANGE_ERRORS   1
sl@0
   133
#     define _STLP_NO_ROPE                   1
sl@0
   134
#    endif /* _NAMESPACE_STD */
sl@0
   135
#   endif /* 314 */
sl@0
   136
sl@0
   137
#  if ((__HP_aCC >= 30000 && __HP_aCC < 31400) || (__HP_aCC == 1)) // A.03.13: __HP_aCC == 1
sl@0
   138
sl@0
   139
#if (__HP_aCC != 1)
sl@0
   140
#   define _STLP_HAS_NO_NEW_C_HEADERS 1
sl@0
   141
#endif
sl@0
   142
sl@0
   143
#   define _STLP_HAS_NO_NEW_IOSTREAMS
sl@0
   144
#   define _STLP_NO_QUALIFIED_FRIENDS       1
sl@0
   145
// aCC bug ? need explicit args on constructors of partial specialized
sl@0
   146
// classes
sl@0
   147
#   define _STLP_PARTIAL_SPEC_NEEDS_TEMPLATE_ARGS 1
sl@0
   148
// ?? fbp: really needed ?
sl@0
   149
#   define _STLP_STATIC_ARRAY_BUG 1
sl@0
   150
// ?? fbp : maybe present in some versions ?
sl@0
   151
#   define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
sl@0
   152
#   define _STLP_NO_MEMBER_TEMPLATE_KEYWORD 1
sl@0
   153
// <exception> and stuff is in global namespace
sl@0
   154
#   define _STLP_VENDOR_GLOBAL_EXCEPT_STD
sl@0
   155
// fbp : moved here
sl@0
   156
#     define _STLP_VENDOR_GLOBAL_CSTD        1
sl@0
   157
// #     define _INCLUDE_HPUX_SOURCE
sl@0
   158
#   define _XPG4
sl@0
   159
#   define _INCLUDE_XOPEN_SOURCE
sl@0
   160
#   define _INCLUDE_AES_SOURCE
sl@0
   161
#  endif /* < 314 */
sl@0
   162
#   if __HP_aCC == 1
sl@0
   163
#     define _STLP_BROKEN_USING_IN_CLASS
sl@0
   164
#     define _STLP_USING_BASE_MEMBER
sl@0
   165
#     define _STLP_NO_CWCHAR
sl@0
   166
// #     define _STLP_NO_WCHAR_T 1
sl@0
   167
#   endif
sl@0
   168
# endif /* HP_ACC */
sl@0
   169
sl@0
   170
// 
sl@0
   171
# ifndef __HP_aCC
sl@0
   172
#  define _STLP_NATIVE_INCLUDE_PATH ../CC
sl@0
   173
#  define _STLP_NATIVE_C_INCLUDE_PATH ../include
sl@0
   174
// it is HP's old cfront-based compiler.
sl@0
   175
#  define _STLP_NO_BOOL 1
sl@0
   176
// #  define _STLP_DONT_USE_BOOL_TYPEDEF 1
sl@0
   177
#  define _STLP_NO_NEW_NEW_HEADER 1 
sl@0
   178
#  define _STLP_HAS_NO_NEW_IOSTREAMS 1
sl@0
   179
#  define _STLP_LIMITED_DEFAULT_TEMPLATES 1
sl@0
   180
#  define _STLP_NO_SIGNED_BUILTINS
sl@0
   181
#  define _STLP_HAS_NO_NAMESPACES 1
sl@0
   182
#  define _STLP_NEED_TYPENAME 1
sl@0
   183
#  define _STLP_NEED_EXPLICIT 1
sl@0
   184
#  define _STLP_NO_EXCEPTION_SPEC 1
sl@0
   185
#  define _STLP_NONTEMPL_BASE_MATCH_BUG 1
sl@0
   186
#  define _STLP_NO_ARROW_OPERATOR 1
sl@0
   187
#  define _STLP_BASE_MATCH_BUG
sl@0
   188
#  define _STLP_BASE_TYPEDEF_OUTSIDE_BUG 1
sl@0
   189
#  define _STLP_NO_NEW_STYLE_CASTS 1
sl@0
   190
// #  define _STLP_NO_WCHAR_T 1
sl@0
   191
// #  define _STLP_LONG_LONG long long
sl@0
   192
#  define _STLP_NEED_MUTABLE 1
sl@0
   193
#  define _STLP_NO_PARTIAL_SPECIALIZATION_SYNTAX 1
sl@0
   194
#  define _STLP_NO_BAD_ALLOC 1
sl@0
   195
#  define _STLP_NO_MEMBER_TEMPLATES 1
sl@0
   196
#  define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
sl@0
   197
#  define _STLP_NO_MEMBER_TEMPLATE_KEYWORD 1
sl@0
   198
#  define _STLP_NO_FRIEND_TEMPLATES 1
sl@0
   199
#  define _STLP_NO_QUALIFIED_FRIENDS 1
sl@0
   200
#  define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
sl@0
   201
#  define _STLP_NO_FUNCTION_TMPL_PARTIAL_ORDER 1
sl@0
   202
#  define _STLP_MEMBER_POINTER_PARAM_BUG 1
sl@0
   203
#  define _STLP_NON_TYPE_TMPL_PARAM_BUG 1
sl@0
   204
#  define _STLP_NO_DEFAULT_NON_TYPE_PARAM 1
sl@0
   205
// #  define _STLP_NO_METHOD_SPECIALIZATION 1
sl@0
   206
#  define _STLP_NO_EXPLICIT_FUNCTION_TMPL_ARGS 1
sl@0
   207
#  define _STLP_NO_EXCEPTION_HEADER 1
sl@0
   208
#  define _STLP_DEFAULT_CONSTRUCTOR_BUG 1
sl@0
   209
#  define _STLP_HAS_NO_NEW_C_HEADERS 1
sl@0
   210
// #  define _STLP_STATIC_CONST_INIT_BUG 1
sl@0
   211
// #  define _STLP_THROW_RETURN_BUG 1
sl@0
   212
// #  define _STLP_LINK_TIME_INSTANTIATION 1
sl@0
   213
// #  define _STLP_NO_TEMPLATE_CONVERSIONS 1
sl@0
   214
#  define _STLP_NO_TYPEINFO 1
sl@0
   215
#  define _STLP_WCHAR_T_IS_USHORT 1
sl@0
   216
sl@0
   217
# endif /* cfront */
sl@0
   218