OSDN Git Service

2001-04-05 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / acconfig.h
1 // acconfig.h symbols and macros for libstdc++ v3 -*- C++ -*-
2
3 // Define if GCC support for __complex__ float is buggy.
4 #undef _GLIBCPP_BUGGY_FLOAT_COMPLEX
5
6 // Define if GCC support for __complex__ is buggy.
7 #undef _GLIBCPP_BUGGY_COMPLEX
8
9 // Include support for multiple threads, e.g., in the I/O package.
10 #undef _GLIBCPP_USE_THREADS
11
12 // Include support for 'long long' and 'unsigned long long'.
13 #undef _GLIBCPP_USE_LONG_LONG
14
15 // Include support for 'long double'.
16 #undef _GLIBCPP_USE_LONG_DOUBLE
17
18 // Include support for shadow headers, ie --enable-cshadow-headers.
19 #undef _GLIBCPP_USE_SHADOW_HEADERS
20
21 // Define if code specialized for wchar_t should be used.
22 #undef _GLIBCPP_USE_WCHAR_T
23
24 // Define if you have the atan2f function.
25 #undef _GLIBCPP_HAVE_ATAN2F 
26
27 // Define if you have the atan2l function.
28 #undef _GLIBCPP_HAVE_ATAN2L
29
30 // Define if you have the copysignf function.
31 #undef _GLIBCPP_HAVE_COPYSIGNF
32
33 // Define if lldiv_t exists in stdlib.h.
34 #undef HAVE_LLDIV_T
35
36 // Define if mbstate_t exists in wchar.h.  */
37 #undef HAVE_MBSTATE_T
38
39 // Define if you have the modff function.  */
40 #undef HAVE_MODFF
41
42 // Define if you have the modfl function.  */
43 #undef HAVE_MODFL
44
45 // Define if the compiler/host combination has __builtin_abs
46 #undef HAVE___BUILTIN_ABS
47
48 // Define if the compiler/host combination has __builtin_labs
49 #undef HAVE___BUILTIN_LABS
50
51 // Define if the compiler/host combination has __builtin_cos
52 #undef HAVE___BUILTIN_COS
53
54 // Define if the compiler/host combination has __builtin_cosf
55 #undef HAVE___BUILTIN_COSF
56
57 // Define if the compiler/host combination has __builtin_cosl
58 #undef HAVE___BUILTIN_COSL
59
60 // Define if the compiler/host combination has __builtin_fabs
61 #undef HAVE___BUILTIN_FABS
62
63 // Define if the compiler/host combination has __builtin_fabsf
64 #undef HAVE___BUILTIN_FABSF
65
66 // Define if the compiler/host combination has __builtin_fabsl
67 #undef HAVE___BUILTIN_FABSL
68
69 // Define if the compiler/host combination has __builtin_sin
70 #undef HAVE___BUILTIN_SIN
71
72 // Define if the compiler/host combination has __builtin_sinf
73 #undef HAVE___BUILTIN_SINF
74
75 // Define if the compiler/host combination has __builtin_sinl
76 #undef HAVE___BUILTIN_SINL
77
78 // Define if the compiler/host combination has __builtin_fsqrt
79 #undef HAVE___BUILTIN_FSQRT
80
81 // Define if the compiler/host combination has __builtin_sqrtf
82 #undef HAVE___BUILTIN_SQRTF
83
84 // Define if the compiler/host combination has __builtin_sqrtl
85 #undef HAVE___BUILTIN_SQRTL
86
87 // Define if LC_MESSAGES is available in <locale.h>.
88 #undef HAVE_LC_MESSAGES
89
90 // Define if <float.h> exists.
91 #undef HAVE_FLOAT_H
92
93 // Define if modf is present in <math.h>
94 #undef HAVE_MODF
95
96 // @BOTTOM@
97 //
98 // Systems that have certain non-standard functions prefixed with an
99 // underscore, we'll handle those here. Must come after config.h.in.
100 //
101
102 #if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN)
103 # define HAVE_ISNAN 1
104 # define isnan _isnan
105 #endif
106
107 #if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF)
108 # define HAVE_ISNANF 1
109 # define isnanf _isnanf
110 #endif
111
112 #if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL)
113 # define HAVE_ISNANL 1
114 # define isnanl _isnanl
115 #endif
116
117 #if defined (HAVE__ISINF) && ! defined (HAVE_ISINF)
118 # define HAVE_ISINF 1
119 # define isinf _isinf
120 #endif
121
122 #if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF)
123 # define HAVE_ISINFF 1
124 # define isinff _isinff
125 #endif
126
127 #if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL)
128 # define HAVE_ISINFL 1
129 # define isinfl _isinfl
130 #endif
131
132 #if defined (HAVE__COPYSIGN) && ! defined (HAVE_COPYSIGN)
133 # define HAVE_COPYSIGN 1
134 # define copysign _copysign
135 #endif
136
137 #if defined (HAVE__COPYSIGNL) && ! defined (HAVE_COPYSIGNL)
138 # define HAVE_COPYSIGNL 1
139 # define copysignl _copysignl
140 #endif
141
142 #if defined (HAVE__COSF) && ! defined (HAVE_COSF)
143 # define HAVE_COSF 1
144 # define cosf _cosf
145 #endif
146
147 #if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF)
148 # define HAVE_ACOSF 1
149 # define acosf _acosf
150 #endif
151
152 #if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL)
153 # define HAVE_ACOSL 1
154 # define acosl _acosl
155 #endif
156
157 #if defined (HAVE__ASINF) && ! defined (HAVE_ASINF)
158 # define HAVE_ASINF 1
159 # define asinf _asinf
160 #endif
161
162 #if defined (HAVE__ASINL) && ! defined (HAVE_ASINL)
163 # define HAVE_ASINL 1
164 # define asinl _asinl
165 #endif
166
167 #if defined (HAVE__ATANF) && ! defined (HAVE_ATANF)
168 # define HAVE_ATANF 1
169 # define atanf _atanf
170 #endif
171
172 #if defined (HAVE__ATANL) && ! defined (HAVE_ATANL)
173 # define HAVE_ATANL 1
174 # define atanl _atanl
175 #endif
176
177 #if defined (HAVE__CEILF) && ! defined (HAVE_CEILF)
178 # define HAVE_CEILF 1
179 # define aceil _ceilf
180 #endif
181
182 #if defined (HAVE__CEILL) && ! defined (HAVE_CEILL)
183 # define HAVE_CEILL 1
184 # define aceil _ceill
185 #endif
186
187 #if defined (HAVE__COSHF) && ! defined (HAVE_COSHF)
188 # define HAVE_COSHF 1
189 # define coshf _coshf
190 #endif
191
192 #if defined (HAVE__COSL) && ! defined (HAVE_COSL)
193 # define HAVE_COSL 1
194 # define cosl _cosl
195 #endif
196
197 #if defined (HAVE__LOGF) && ! defined (HAVE_LOGF)
198 # define HAVE_LOGF 1
199 # define logf _logf
200 #endif
201
202 #if defined (HAVE__COSHL) && ! defined (HAVE_COSHL)
203 # define HAVE_COSHL 1
204 # define coshl _coshl
205 #endif
206
207 #if defined (HAVE__EXPF) && ! defined (HAVE_EXPF)
208 # define HAVE_EXPF 1
209 # define expf _expf
210 #endif
211
212 #if defined (HAVE__EXPL) && ! defined (HAVE_EXPL)
213 # define HAVE_EXPL 1
214 # define expl _expl
215 #endif
216
217 #if defined (HAVE__FABSF) && ! defined (HAVE_FABSF)
218 # define HAVE_FABSF 1
219 # define fabsf _fabsf
220 #endif
221
222 #if defined (HAVE__FABSL) && ! defined (HAVE_FABSL)
223 # define HAVE_FABSL 1
224 # define fabsl _fabsl
225 #endif
226
227 #if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF)
228 # define HAVE_FLOORF 1
229 # define floorf _floorf
230 #endif
231
232 #if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL)
233 # define HAVE_FLOORL 1
234 # define floorl _floorl
235 #endif
236
237 #if defined (HAVE__FMODF) && ! defined (HAVE_FMODF)
238 # define HAVE_FMODF 1
239 # define fmodf _fmodf
240 #endif
241
242 #if defined (HAVE__FMODL) && ! defined (HAVE_FMODL)
243 # define HAVE_FMODL 1
244 # define fmodl _fmodl
245 #endif
246
247 #if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF)
248 # define HAVE_FREXPF 1
249 # define frexpf _frexpf
250 #endif
251
252 #if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL)
253 # define HAVE_FREXPL 1
254 # define frexpl _frexpl
255 #endif
256
257 #if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF)
258 # define HAVE_LDEXPF 1
259 # define ldexpf _ldexpf
260 #endif
261
262 #if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL)
263 # define HAVE_LDEXPL 1
264 # define ldexpl _ldexpl
265 #endif
266
267 #if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F)
268 # define HAVE_LOG10F 1
269 # define log10f _log10f
270 #endif
271
272 #if defined (HAVE__LOGL) && ! defined (HAVE_LOGL)
273 # define HAVE_LOGL 1
274 # define logl _logl
275 #endif
276
277 #if defined (HAVE__POWF) && ! defined (HAVE_POWF)
278 # define HAVE_POWF 1
279 # define powf _powf
280 #endif
281
282 #if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L)
283 # define HAVE_LOG10L 1
284 # define log10l _log10l
285 #endif
286
287 #if defined (HAVE__MODF) && ! defined (HAVE_MODF)
288 # define HAVE_MODF 1
289 # define modf _modf
290 #endif
291
292 #if defined (HAVE__MODL) && ! defined (HAVE_MODL)
293 # define HAVE_MODL 1
294 # define modl _modl
295 #endif
296
297 #if defined (HAVE__SINF) && ! defined (HAVE_SINF)
298 # define HAVE_SINF 1
299 # define sinf _sinf
300 #endif
301
302 #if defined (HAVE__POWL) && ! defined (HAVE_POWL)
303 # define HAVE_POWL 1
304 # define powl _powl
305 #endif
306
307 #if defined (HAVE__SINHF) && ! defined (HAVE_SINHF)
308 # define HAVE_SINHF 1
309 # define sinhf _sinhf
310 #endif
311
312 #if defined (HAVE__SINL) && ! defined (HAVE_SINL)
313 # define HAVE_SINL 1
314 # define sinl _sinl
315 #endif
316
317 #if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF)
318 # define HAVE_SQRTF 1
319 # define sqrtf _sqrtf
320 #endif
321
322 #if defined (HAVE__SINHL) && ! defined (HAVE_SINHL)
323 # define HAVE_SINHL 1
324 # define sinhl _sinhl
325 #endif
326
327 #if defined (HAVE__TANF) && ! defined (HAVE_TANF)
328 # define HAVE_TANF 1
329 # define tanf _tanf
330 #endif
331
332 #if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL)
333 # define HAVE_SQRTL 1
334 # define sqrtl _sqrtl
335 #endif
336
337 #if defined (HAVE__TANHF) && ! defined (HAVE_TANHF)
338 # define HAVE_TANHF 1
339 # define tanhf _tanhf
340 #endif
341
342 #if defined (HAVE__TANL) && ! defined (HAVE_TANL)
343 # define HAVE_TANF 1
344 # define tanf _tanf
345 #endif
346
347 #if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF)
348 # define HAVE_STRTOF 1
349 # define strtof _strtof
350 #endif
351
352 #if defined (HAVE__TANHL) && ! defined (HAVE_TANHL)
353 # define HAVE_TANHL 1
354 # define tanhl _tanhl
355 #endif
356
357 #if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD)
358 # define HAVE_STRTOLD 1
359 # define strtold _strtold
360 #endif
361
362 #if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS)
363 # define HAVE_SINCOS 1
364 # define sincos _sincos
365 #endif
366
367 #if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF)
368 # define HAVE_SINCOSF 1
369 # define sincosf _sincosf
370 #endif
371
372 #if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL)
373 # define HAVE_SINCOSL 1
374 # define sincosl _sincosl
375 #endif
376
377 #if defined (HAVE__FINITE) && ! defined (HAVE_FINITE)
378 # define HAVE_FINITE 1
379 # define finite _finite
380 #endif
381
382 #if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF)
383 # define HAVE_FINITEF 1
384 # define finitef _finitef
385 #endif
386
387 #if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL)
388 # define HAVE_FINITEL 1
389 # define finitel _finitel
390 #endif
391
392 #if defined (HAVE__QFINITE) && ! defined (HAVE_QFINITE)
393 # define HAVE_QFINITE 1
394 # define qfinite _qfinite
395 #endif
396
397 #if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS)
398 # define HAVE_FPCLASS 1
399 # define fpclass _fpclass
400 #endif
401
402 #if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS)
403 # define HAVE_QFPCLASS 1
404 # define qfpclass _qfpclass
405 #endif
406