blob: 70297439e1362569dfe9303bd8d5d9c43ed0d745 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/* -*- C++ -*- */
// $Id$
// The following configuration file is designed to work for HP
// platforms running HP/UX 10.x with either of the HP C++ compilers.
// This file contains compiler-specific settings, and uses the common
// HP-UX file (config-hpux-10.x.h) for the platform information.
#ifndef ACE_CONFIG_H
#include "ace/pre.h"
#define ACE_CONFIG_H
// There are 2 compiler-specific sections, plus a 3rd for common to both.
// First is the HP C++ section...
#if __cplusplus < 199707L
// To use HP/C++ you need some patches, the following set
//
// PHSS_9855
// PHSS_9096
// PHSS_10261
// PHSS_9062
// PHSS_7505
// PHSS_8490
//
// worked for me (Carlos O'Ryan), but you should check by yourself.
// The most important one is PHSS_9855, but in depends on some of the
// others.
# define ACE_HAS_BROKEN_HPUX_TEMPLATES
// Compiler can't handle calls like foo->operator T *()
# define ACE_HAS_BROKEN_CONVERSIONS
// Necessary with some compilers to pass ACE_TTY_IO as parameter to
// DEV_Connector.
# define ACE_NEEDS_DEV_IO_CONVERSION
// Compiler's template mechanism must see source code (i.e., .C files).
# define ACE_TEMPLATES_REQUIRE_SOURCE
// Compiler's template mechanism requires the use of explicit C++
// specializations for all used templates.
# define ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION
// The HP/UX compiler doesn't support volatile!!!!
# define volatile
#else // aC++ definitions
// Parts of TAO (at least) use __HP_aCC to detect this compiler, but the
// macro is not set until A.01.18. If it's not set, set it - it won't be an
// HP-advertised value, but we don't check the value/version - just whether
// it's set or not.
# if !defined (__HP_aCC)
# define __HP_aCC
# endif /* __HP_aCC */
// Compiler doesn't support the operator placement delete.
# define ACE_LACKS_PLACEMENT_OPERATOR_DELETE
// Precompiler needs extra flags to ignore "invalid #pragma directive"
# define ACE_CC_PREPROCESSOR_ARGS "-E +W 67"
// Compiler supports to-be-ANSI casts
# define ACE_HAS_ANSI_CASTS
// Compiler can't handle calls like foo->operator T *()
# define ACE_HAS_BROKEN_CONVERSIONS
// Compiler supports C++ exception handling
# define ACE_HAS_EXCEPTIONS
// Compiler enforces the "One Definition Rule"
# define ACE_HAS_ONE_DEFINITION_RULE
// Compiler enforces need for 'template<>" when specializing template
// classes.
# define ACE_HAS_STD_TEMPLATE_SPECIALIZATION
// Compiler enforces proper use of 'typename'
# define ACE_HAS_TYPENAME_KEYWORD
// Compiler implements templates that support typedefs inside of classes
// used as formal arguments to a template class.
# define ACE_HAS_TEMPLATE_TYPEDEFS
// Compiler supports the 'typename' qualifier.
# define ACE_HAS_TYPENAME_KEYWORD
// This is legit for A.01.12 and probably at least as far back as A.01.07.
// Before that, not sure. But you shouldn't be there anyway ;-)
# define ACE_HAS_USING_KEYWORD
// Platform lacks streambuf "linebuffered ()".
# define ACE_LACKS_LINEBUFFERED_STREAMBUF
// Compiler's template mechanism must see source code (i.e., .C files).
# define ACE_TEMPLATES_REQUIRE_SOURCE
// Compiler supports template specialization.
# define ACE_HAS_TEMPLATE_SPECIALIZATION
// Compiler's runtime new throws bad_alloc on out-of-memory condition.
# define ACE_NEW_THROWS_EXCEPTIONS
#endif /* __cplusplus < 199707L */
// Compiler supports the ssize_t typedef.
#define ACE_HAS_SSIZE_T
#define ACE_HAS_UALARM
#define ACE_HAS_GPERF
// Optimize ACE_Handle_Set for select().
#define ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT
// Compiler doesn't handle 'signed char' correctly (used in ace/IOStream.h)
#define ACE_LACKS_SIGNED_CHAR
#include "ace/config-hpux-10.x.h" /* OS information */
#include "ace/post.h"
#endif /* ACE_CONFIG_H */
|