OSDN Git Service

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