OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / acconfig.h
1 // Symbols and macros for libstdc++ -*- C++ -*-
2
3 // Defines libstdc++ version.
4 #undef PACKAGE
5 #undef VERSION
6
7 // Needed for gettext.
8 #undef ENABLE_NLS
9 #undef HAVE_CATGETS
10 #undef HAVE_GETTEXT
11 #undef HAVE_STPCPY
12
13 // Define if code specialized for long long should be used.
14 #undef _GLIBCXX_USE_LONG_LONG
15
16 // Define if code specialized for wchar_t should be used.
17 #undef _GLIBCXX_USE_WCHAR_T
18
19 // Define if C99 functions or macros from <wchar.h>, <math.h>,
20 // <complex.h>, <stdio.h>, and <stdlib.h> can be used or exposed.
21 #undef _GLIBCXX_USE_C99
22
23 // Define if C99 functions or macros in <math.h> should be imported in
24 // <cmath> in namespace std.
25 #undef _GLIBCXX_USE_C99_MATH
26
27 // Define if C99 functions in <complex.h> should be used in
28 // <complex>. Using compiler builtins for these functions requires
29 // corresponding C99 library functions to be present.
30 #undef _GLIBCXX_USE_C99_COMPLEX
31
32 // Define if using setrlimit to set resource limits during 'make check'.
33 #undef _GLIBCXX_RES_LIMITS
34
35 // Define to use concept checking code from the boost libraries.
36 #undef _GLIBCXX_CONCEPT_CHECKS
37
38 // Define to use symbol versioning in the shared library.
39 #undef _GLIBCXX_SYMVER
40
41 // Define symbol versioning in assember directives. If symbol
42 // versioning is beigng used, and the assembler supports this kind of
43 // thing, then use it.
44 // NB: _GLIBCXX_AT_AT is a hack to work around quoting issues in m4.
45 #if _GLIBCXX_SYMVER
46   #define _GLIBCXX_ASM_SYMVER(cur, old, version) \
47    asm (".symver " #cur "," #old _GLIBCXX_AT_AT #version);
48 #else
49   #define _GLIBCXX_ASM_SYMVER(cur, old, version)
50 #endif
51
52 // Define if LFS support is available.
53 #undef _GLIBCXX_USE_LFS
54
55 // Define if a fully dynamic basic_string is wanted.
56 #undef _GLIBCXX_FULLY_DYNAMIC_STRING
57
58 // Define if NLS translations are to be used.
59 #undef _GLIBCXX_USE_NLS
60
61 // Define if gthr-default.h exists (meaning that threading support is enabled).
62 #undef HAVE_GTHR_DEFAULT
63
64 // Define if the atan2f function exists.
65 #undef HAVE_ATAN2F 
66
67 // Define if the atan2l function exists.
68 #undef HAVE_ATAN2L
69
70 // Define if the tanl function exists.
71 #undef HAVE_TANL
72
73 // Define if the copysignf function exists.
74 #undef HAVE_COPYSIGNF
75
76 // Define if getpagesize exists.
77 #undef HAVE_GETPAGESIZE
78
79 // Define if setenv exists.
80 #undef HAVE_SETENV
81
82 // Define if sigsetjmp exists.
83 #undef HAVE_SIGSETJMP
84
85 // Define if mbstate_t exists in wchar.h.
86 #undef HAVE_MBSTATE_T
87
88 // Define if you have the modff function.
89 #undef HAVE_MODFF
90
91 // Define if you have the modfl function.
92 #undef HAVE_MODFL
93
94 // Define if you have the expf function.
95 #undef HAVE_EXPF
96
97 // Define if you have the expl function.
98 #undef HAVE_EXPL
99
100 // Define if you have the hypot function.
101 #undef HAVE_HYPOT
102
103 // Define if you have the hypotf function.
104 #undef HAVE_HYPOTF
105
106 // Define if you have the hypotl function.
107 #undef HAVE_HYPOTL
108
109 // Define if the compiler/host combination has __builtin_abs
110 #undef HAVE___BUILTIN_ABS
111
112 // Define if the compiler/host combination has __builtin_labs
113 #undef HAVE___BUILTIN_LABS
114
115 // Define if the compiler/host combination has __builtin_cos
116 #undef HAVE___BUILTIN_COS
117
118 // Define if the compiler/host combination has __builtin_cosf
119 #undef HAVE___BUILTIN_COSF
120
121 // Define if the compiler/host combination has __builtin_cosl
122 #undef HAVE___BUILTIN_COSL
123
124 // Define if the compiler/host combination has __builtin_fabs
125 #undef HAVE___BUILTIN_FABS
126
127 // Define if the compiler/host combination has __builtin_fabsf
128 #undef HAVE___BUILTIN_FABSF
129
130 // Define if the compiler/host combination has __builtin_fabsl
131 #undef HAVE___BUILTIN_FABSL
132
133 // Define if the compiler/host combination has __builtin_sin
134 #undef HAVE___BUILTIN_SIN
135
136 // Define if the compiler/host combination has __builtin_sinf
137 #undef HAVE___BUILTIN_SINF
138
139 // Define if the compiler/host combination has __builtin_sinl
140 #undef HAVE___BUILTIN_SINL
141
142 // Define if the compiler/host combination has __builtin_sqrt
143 #undef HAVE___BUILTIN_SQRT
144
145 // Define if the compiler/host combination has __builtin_sqrtf
146 #undef HAVE___BUILTIN_SQRTF
147
148 // Define if the compiler/host combination has __builtin_sqrtl
149 #undef HAVE___BUILTIN_SQRTL
150
151 // Define if poll is available in <poll.h>.
152 #undef HAVE_POLL
153
154 // Define if S_ISREG (Posix) is available in <sys/stat.h>.
155 #undef HAVE_S_ISREG
156
157 // Define if S_IFREG is available in <sys/stat.h>.
158 #undef HAVE_S_IFREG
159
160 // Define if writev is available in <sys/uio.h>.
161 #undef HAVE_WRITEV
162
163 // Define if int64_t is available in <stdint.h>.
164 #undef HAVE_INT64_T
165
166 // Define if LC_MESSAGES is available in <locale.h>.
167 #undef HAVE_LC_MESSAGES
168
169 // Define if <float.h> exists.
170 #undef HAVE_FLOAT_H
171
172 // Define if modf is present in <math.h>
173 #undef HAVE_MODF
174
175 // @BOTTOM@
176 //
177 // Systems that have certain non-standard functions prefixed with an
178 // underscore, we'll handle those here. Must come after config.h.in.
179 //
180 #if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN)
181 # define HAVE_ISNAN 1
182 # define isnan _isnan
183 #endif
184
185 #if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF)
186 # define HAVE_ISNANF 1
187 # define isnanf _isnanf
188 #endif
189
190 #if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL)
191 # define HAVE_ISNANL 1
192 # define isnanl _isnanl
193 #endif
194
195 #if defined (HAVE__ISINF) && ! defined (HAVE_ISINF)
196 # define HAVE_ISINF 1
197 # define isinf _isinf
198 #endif
199
200 #if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF)
201 # define HAVE_ISINFF 1
202 # define isinff _isinff
203 #endif
204
205 #if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL)
206 # define HAVE_ISINFL 1
207 # define isinfl _isinfl
208 #endif
209
210 #if defined (HAVE__COPYSIGN) && ! defined (HAVE_COPYSIGN)
211 # define HAVE_COPYSIGN 1
212 # define copysign _copysign
213 #endif
214
215 #if defined (HAVE__COPYSIGNL) && ! defined (HAVE_COPYSIGNL)
216 # define HAVE_COPYSIGNL 1
217 # define copysignl _copysignl
218 #endif
219
220 #if defined (HAVE__COSF) && ! defined (HAVE_COSF)
221 # define HAVE_COSF 1
222 # define cosf _cosf
223 #endif
224
225 #if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF)
226 # define HAVE_ACOSF 1
227 # define acosf _acosf
228 #endif
229
230 #if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL)
231 # define HAVE_ACOSL 1
232 # define acosl _acosl
233 #endif
234
235 #if defined (HAVE__ASINF) && ! defined (HAVE_ASINF)
236 # define HAVE_ASINF 1
237 # define asinf _asinf
238 #endif
239
240 #if defined (HAVE__ASINL) && ! defined (HAVE_ASINL)
241 # define HAVE_ASINL 1
242 # define asinl _asinl
243 #endif
244
245 #if defined (HAVE__ATANF) && ! defined (HAVE_ATANF)
246 # define HAVE_ATANF 1
247 # define atanf _atanf
248 #endif
249
250 #if defined (HAVE__ATANL) && ! defined (HAVE_ATANL)
251 # define HAVE_ATANL 1
252 # define atanl _atanl
253 #endif
254
255 #if defined (HAVE__CEILF) && ! defined (HAVE_CEILF)
256 # define HAVE_CEILF 1
257 # define aceil _ceilf
258 #endif
259
260 #if defined (HAVE__CEILL) && ! defined (HAVE_CEILL)
261 # define HAVE_CEILL 1
262 # define aceil _ceill
263 #endif
264
265 #if defined (HAVE__COSHF) && ! defined (HAVE_COSHF)
266 # define HAVE_COSHF 1
267 # define coshf _coshf
268 #endif
269
270 #if defined (HAVE__COSL) && ! defined (HAVE_COSL)
271 # define HAVE_COSL 1
272 # define cosl _cosl
273 #endif
274
275 #if defined (HAVE__LOGF) && ! defined (HAVE_LOGF)
276 # define HAVE_LOGF 1
277 # define logf _logf
278 #endif
279
280 #if defined (HAVE__COSHL) && ! defined (HAVE_COSHL)
281 # define HAVE_COSHL 1
282 # define coshl _coshl
283 #endif
284
285 #if defined (HAVE__EXPF) && ! defined (HAVE_EXPF)
286 # define HAVE_EXPF 1
287 # define expf _expf
288 #endif
289
290 #if defined (HAVE__EXPL) && ! defined (HAVE_EXPL)
291 # define HAVE_EXPL 1
292 # define expl _expl
293 #endif
294
295 #if defined (HAVE__FABSF) && ! defined (HAVE_FABSF)
296 # define HAVE_FABSF 1
297 # define fabsf _fabsf
298 #endif
299
300 #if defined (HAVE__FABSL) && ! defined (HAVE_FABSL)
301 # define HAVE_FABSL 1
302 # define fabsl _fabsl
303 #endif
304
305 #if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF)
306 # define HAVE_FLOORF 1
307 # define floorf _floorf
308 #endif
309
310 #if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL)
311 # define HAVE_FLOORL 1
312 # define floorl _floorl
313 #endif
314
315 #if defined (HAVE__FMODF) && ! defined (HAVE_FMODF)
316 # define HAVE_FMODF 1
317 # define fmodf _fmodf
318 #endif
319
320 #if defined (HAVE__FMODL) && ! defined (HAVE_FMODL)
321 # define HAVE_FMODL 1
322 # define fmodl _fmodl
323 #endif
324
325 #if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF)
326 # define HAVE_FREXPF 1
327 # define frexpf _frexpf
328 #endif
329
330 #if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL)
331 # define HAVE_FREXPL 1
332 # define frexpl _frexpl
333 #endif
334
335 #if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF)
336 # define HAVE_LDEXPF 1
337 # define ldexpf _ldexpf
338 #endif
339
340 #if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL)
341 # define HAVE_LDEXPL 1
342 # define ldexpl _ldexpl
343 #endif
344
345 #if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F)
346 # define HAVE_LOG10F 1
347 # define log10f _log10f
348 #endif
349
350 #if defined (HAVE__LOGL) && ! defined (HAVE_LOGL)
351 # define HAVE_LOGL 1
352 # define logl _logl
353 #endif
354
355 #if defined (HAVE__POWF) && ! defined (HAVE_POWF)
356 # define HAVE_POWF 1
357 # define powf _powf
358 #endif
359
360 #if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L)
361 # define HAVE_LOG10L 1
362 # define log10l _log10l
363 #endif
364
365 #if defined (HAVE__MODF) && ! defined (HAVE_MODF)
366 # define HAVE_MODF 1
367 # define modf _modf
368 #endif
369
370 #if defined (HAVE__MODL) && ! defined (HAVE_MODL)
371 # define HAVE_MODL 1
372 # define modl _modl
373 #endif
374
375 #if defined (HAVE__SINF) && ! defined (HAVE_SINF)
376 # define HAVE_SINF 1
377 # define sinf _sinf
378 #endif
379
380 #if defined (HAVE__POWL) && ! defined (HAVE_POWL)
381 # define HAVE_POWL 1
382 # define powl _powl
383 #endif
384
385 #if defined (HAVE__SINHF) && ! defined (HAVE_SINHF)
386 # define HAVE_SINHF 1
387 # define sinhf _sinhf
388 #endif
389
390 #if defined (HAVE__SINL) && ! defined (HAVE_SINL)
391 # define HAVE_SINL 1
392 # define sinl _sinl
393 #endif
394
395 #if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF)
396 # define HAVE_SQRTF 1
397 # define sqrtf _sqrtf
398 #endif
399
400 #if defined (HAVE__SINHL) && ! defined (HAVE_SINHL)
401 # define HAVE_SINHL 1
402 # define sinhl _sinhl
403 #endif
404
405 #if defined (HAVE__TANF) && ! defined (HAVE_TANF)
406 # define HAVE_TANF 1
407 # define tanf _tanf
408 #endif
409
410 #if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL)
411 # define HAVE_SQRTL 1
412 # define sqrtl _sqrtl
413 #endif
414
415 #if defined (HAVE__TANHF) && ! defined (HAVE_TANHF)
416 # define HAVE_TANHF 1
417 # define tanhf _tanhf
418 #endif
419
420 #if defined (HAVE__TANL) && ! defined (HAVE_TANL)
421 # define HAVE_TANF 1
422 # define tanf _tanf
423 #endif
424
425 #if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF)
426 # define HAVE_STRTOF 1
427 # define strtof _strtof
428 #endif
429
430 #if defined (HAVE__TANHL) && ! defined (HAVE_TANHL)
431 # define HAVE_TANHL 1
432 # define tanhl _tanhl
433 #endif
434
435 #if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD)
436 # define HAVE_STRTOLD 1
437 # define strtold _strtold
438 #endif
439
440 #if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS)
441 # define HAVE_SINCOS 1
442 # define sincos _sincos
443 #endif
444
445 #if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF)
446 # define HAVE_SINCOSF 1
447 # define sincosf _sincosf
448 #endif
449
450 #if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL)
451 # define HAVE_SINCOSL 1
452 # define sincosl _sincosl
453 #endif
454
455 #if defined (HAVE__FINITE) && ! defined (HAVE_FINITE)
456 # define HAVE_FINITE 1
457 # define finite _finite
458 #endif
459
460 #if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF)
461 # define HAVE_FINITEF 1
462 # define finitef _finitef
463 #endif
464
465 #if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL)
466 # define HAVE_FINITEL 1
467 # define finitel _finitel
468 #endif
469
470 #if defined (HAVE__QFINITE) && ! defined (HAVE_QFINITE)
471 # define HAVE_QFINITE 1
472 # define qfinite _qfinite
473 #endif
474
475 #if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS)
476 # define HAVE_FPCLASS 1
477 # define fpclass _fpclass
478 #endif
479
480 #if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS)
481 # define HAVE_QFPCLASS 1
482 # define qfpclass _qfpclass
483 #endif
484