OSDN Git Service

* gfortran.dg/tiny_1.f90: New test.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / linkage.m4
1 dnl
2 dnl This file contains macros for testing linkage.
3 dnl
4
5 dnl
6 dnl Check to see if the (math function) argument passed is
7 dnl declared when using the c++ compiler
8 dnl ASSUMES argument is a math function with ONE parameter
9 dnl
10 dnl GLIBCXX_CHECK_MATH_DECL_1
11 AC_DEFUN([GLIBCXX_CHECK_MATH_DECL_1], [
12   AC_MSG_CHECKING([for $1 declaration])
13   if test x${glibcxx_cv_func_$1_use+set} != xset; then
14     AC_CACHE_VAL(glibcxx_cv_func_$1_use, [
15       AC_LANG_SAVE
16       AC_LANG_CPLUSPLUS
17       AC_TRY_COMPILE([#include <math.h>
18                       #ifdef HAVE_IEEEFP_H
19                       #include <ieeefp.h>
20                       #endif
21                      ],
22                      [ $1(0);],
23                       [glibcxx_cv_func_$1_use=yes], [glibcxx_cv_func_$1_use=no])
24       AC_LANG_RESTORE
25     ])
26   fi
27   AC_MSG_RESULT($glibcxx_cv_func_$1_use)
28 ])
29
30 dnl
31 dnl Check to see if the (math function) argument passed is
32 dnl 1) declared when using the c++ compiler
33 dnl 2) has "C" linkage
34 dnl 3) if not, see if 1) and 2) for argument prepended with '_'
35 dnl
36 dnl Define HAVE_CARGF etc if "cargf" is declared and links
37 dnl
38 dnl argument 1 is name of function to check
39 dnl
40 dnl ASSUMES argument is a math function with ONE parameter
41 dnl
42 dnl GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1
43 AC_DEFUN([GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1], [
44   GLIBCXX_CHECK_MATH_DECL_1($1)
45   if test x$glibcxx_cv_func_$1_use = x"yes"; then
46     AC_CHECK_FUNCS($1)
47   else
48     GLIBCXX_CHECK_MATH_DECL_1(_$1)
49     if test x$glibcxx_cv_func__$1_use = x"yes"; then
50       AC_CHECK_FUNCS(_$1)
51     fi
52   fi
53 ])
54
55
56 dnl
57 dnl Like GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1, but does a bunch of
58 dnl of functions at once.  It's an all-or-nothing check -- either
59 dnl HAVE_XYZ is defined for each of the functions, or for none of them.
60 dnl Doing it this way saves significant configure time.
61 AC_DEFUN([GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1], [
62   AC_MSG_CHECKING([for $1 functions])
63   AC_CACHE_VAL(glibcxx_cv_func_$2_use, [
64     AC_LANG_SAVE
65     AC_LANG_CPLUSPLUS
66     AC_TRY_COMPILE([#include <math.h>],
67                    [ `for x in $3; do echo "$x (0);"; done` ],
68                    [glibcxx_cv_func_$2_use=yes],
69                    [glibcxx_cv_func_$2_use=no])
70     AC_LANG_RESTORE])
71   AC_MSG_RESULT($glibcxx_cv_func_$2_use)
72   if test x$glibcxx_cv_func_$2_use = x"yes"; then
73     AC_CHECK_FUNCS($3)
74   fi
75 ])
76
77 dnl
78 dnl Check to see if the (math function) argument passed is
79 dnl declared when using the c++ compiler
80 dnl ASSUMES argument is a math function with TWO parameters
81 dnl
82 dnl GLIBCXX_CHECK_MATH_DECL_2
83 AC_DEFUN([GLIBCXX_CHECK_MATH_DECL_2], [
84   AC_MSG_CHECKING([for $1 declaration])
85   if test x${glibcxx_cv_func_$1_use+set} != xset; then
86     AC_CACHE_VAL(glibcxx_cv_func_$1_use, [
87       AC_LANG_SAVE
88       AC_LANG_CPLUSPLUS
89       AC_TRY_COMPILE([#include <math.h>],
90                      [ $1(0, 0);],
91                      [glibcxx_cv_func_$1_use=yes], [glibcxx_cv_func_$1_use=no])
92       AC_LANG_RESTORE
93     ])
94   fi
95   AC_MSG_RESULT($glibcxx_cv_func_$1_use)
96 ])
97
98 dnl
99 dnl Check to see if the (math function) argument passed is
100 dnl 1) declared when using the c++ compiler
101 dnl 2) has "C" linkage
102 dnl
103 dnl Define HAVE_CARGF etc if "cargf" is declared and links
104 dnl
105 dnl argument 1 is name of function to check
106 dnl
107 dnl ASSUMES argument is a math function with TWO parameters
108 dnl
109 dnl GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2
110 AC_DEFUN([GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2], [
111   GLIBCXX_CHECK_MATH_DECL_2($1)
112   if test x$glibcxx_cv_func_$1_use = x"yes"; then
113     AC_CHECK_FUNCS($1)
114   else
115     GLIBCXX_CHECK_MATH_DECL_2(_$1)
116     if test x$glibcxx_cv_func__$1_use = x"yes"; then
117       AC_CHECK_FUNCS(_$1)
118     fi
119   fi
120 ])
121
122
123 dnl
124 dnl Check to see if the (math function) argument passed is
125 dnl declared when using the c++ compiler
126 dnl ASSUMES argument is a math function with THREE parameters
127 dnl
128 dnl GLIBCXX_CHECK_MATH_DECL_3
129 AC_DEFUN([GLIBCXX_CHECK_MATH_DECL_3], [
130   AC_MSG_CHECKING([for $1 declaration])
131   if test x${glibcxx_cv_func_$1_use+set} != xset; then
132     AC_CACHE_VAL(glibcxx_cv_func_$1_use, [
133       AC_LANG_SAVE
134       AC_LANG_CPLUSPLUS
135       AC_TRY_COMPILE([#include <math.h>],
136                      [ $1(0, 0, 0);],
137                      [glibcxx_cv_func_$1_use=yes], [glibcxx_cv_func_$1_use=no])
138       AC_LANG_RESTORE
139     ])
140   fi
141   AC_MSG_RESULT($glibcxx_cv_func_$1_use)
142 ])
143
144 dnl
145 dnl Check to see if the (math function) argument passed is
146 dnl 1) declared when using the c++ compiler
147 dnl 2) has "C" linkage
148 dnl
149 dnl Define HAVE_CARGF etc if "cargf" is declared and links
150 dnl
151 dnl argument 1 is name of function to check
152 dnl
153 dnl ASSUMES argument is a math function with THREE parameters
154 dnl
155 dnl GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3
156 AC_DEFUN([GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3], [
157   GLIBCXX_CHECK_MATH_DECL_3($1)
158   if test x$glibcxx_cv_func_$1_use = x"yes"; then
159     AC_CHECK_FUNCS($1)
160   else
161     GLIBCXX_CHECK_MATH_DECL_3(_$1)
162     if test x$glibcxx_cv_func__$1_use = x"yes"; then
163       AC_CHECK_FUNCS(_$1)
164     fi
165   fi
166 ])
167
168
169 dnl
170 dnl Check to see if the (stdlib function) argument passed is
171 dnl 1) declared when using the c++ compiler
172 dnl 2) has "C" linkage
173 dnl
174 dnl argument 1 is name of function to check
175 dnl
176 dnl ASSUMES argument is a stdlib function without parameters
177 dnl
178 dnl GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_0
179 AC_DEFUN([GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_0], [
180   AC_MSG_CHECKING([for $1 declaration])
181   if test x${glibcxx_cv_func_$1_use+set} != xset; then
182     AC_CACHE_VAL(glibcxx_cv_func_$1_use, [
183       AC_LANG_SAVE
184       AC_LANG_CPLUSPLUS
185       AC_TRY_COMPILE([#include <stdlib.h>],
186                      [ $1();],
187                      [glibcxx_cv_func_$1_use=yes], [glibcxx_cv_func_$1_use=no])
188       AC_LANG_RESTORE
189     ])
190   fi
191   AC_MSG_RESULT($glibcxx_cv_func_$1_use)
192   if test x$glibcxx_cv_func_$1_use = x"yes"; then
193     AC_CHECK_FUNCS($1)
194   fi
195 ])
196
197
198 dnl
199 dnl Check to see if the (stdlib function) argument passed is
200 dnl 1) declared when using the c++ compiler
201 dnl 2) has "C" linkage
202 dnl
203 dnl argument 1 is name of function to check
204 dnl
205 dnl ASSUMES argument is a math function with TWO parameters
206 dnl
207 dnl GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2
208 AC_DEFUN([GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2], [
209   AC_MSG_CHECKING([for $1 declaration])
210   if test x${glibcxx_cv_func_$1_use+set} != xset; then
211     AC_CACHE_VAL(glibcxx_cv_func_$1_use, [
212       AC_LANG_SAVE
213       AC_LANG_CPLUSPLUS
214       AC_TRY_COMPILE([#include <stdlib.h>],
215                      [ $1(0, 0);],
216                      [glibcxx_cv_func_$1_use=yes], [glibcxx_cv_func_$1_use=no])
217       AC_LANG_RESTORE
218     ])
219   fi
220   AC_MSG_RESULT($glibcxx_cv_func_$1_use)
221   if test x$glibcxx_cv_func_$1_use = x"yes"; then
222     AC_CHECK_FUNCS($1)
223   fi
224 ])
225
226
227 dnl
228 dnl Check to see if the (stdlib function) argument passed is
229 dnl 1) declared when using the c++ compiler
230 dnl 2) has "C" linkage
231 dnl
232 dnl argument 1 is name of function to check
233 dnl
234 dnl ASSUMES argument is a function with THREE parameters
235 dnl
236 dnl GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_3
237 AC_DEFUN([GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_3], [
238   AC_MSG_CHECKING([for $1 declaration])
239   if test x${glibcxx_cv_func_$1_use+set} != xset; then
240     AC_CACHE_VAL(glibcxx_cv_func_$1_use, [
241       AC_LANG_SAVE
242       AC_LANG_CPLUSPLUS
243       AC_TRY_COMPILE([#include <stdlib.h>],
244                      [ $1(0, 0, 0);],
245                      [glibcxx_cv_func_$1_use=yes], [glibcxx_cv_func_$1_use=no])
246       AC_LANG_RESTORE
247     ])
248   fi
249   AC_MSG_RESULT($glibcxx_cv_func_$1_use)
250   if test x$glibcxx_cv_func_$1_use = x"yes"; then
251     AC_CHECK_FUNCS($1)
252   fi
253 ])
254
255 dnl
256 dnl Because the builtins are picky picky picky about the arguments they take,
257 dnl do an explict linkage tests here.
258 dnl Check to see if the (math function) argument passed is
259 dnl 1) declared when using the c++ compiler
260 dnl 2) has "C" linkage
261 dnl
262 dnl Define HAVE_CARGF etc if "cargf" is declared and links
263 dnl
264 dnl argument 1 is name of function to check
265 dnl
266 dnl ASSUMES argument is a math function with ONE parameter
267 dnl
268 dnl GLIBCXX_CHECK_BUILTIN_MATH_DECL_LINKAGE_1
269 AC_DEFUN([GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1], [
270   AC_MSG_CHECKING([for $1 declaration])
271   if test x${glibcxx_cv_func_$1_use+set} != xset; then
272     AC_CACHE_VAL(glibcxx_cv_func_$1_use, [
273       AC_LANG_SAVE
274       AC_LANG_CPLUSPLUS
275       AC_TRY_COMPILE([#include <math.h>],
276                      [ $1(0);],
277                      [glibcxx_cv_func_$1_use=yes], [glibcxx_cv_func_$1_use=no])
278       AC_LANG_RESTORE
279     ])
280   fi
281   AC_MSG_RESULT($glibcxx_cv_func_$1_use)
282   if test x$glibcxx_cv_func_$1_use = x"yes"; then
283     AC_MSG_CHECKING([for $1 linkage])
284     if test x${glibcxx_cv_func_$1_link+set} != xset; then
285       AC_CACHE_VAL(glibcxx_cv_func_$1_link, [
286         AC_TRY_LINK([#include <math.h>],
287                     [ $1(0);],
288                     [glibcxx_cv_func_$1_link=yes], [glibcxx_cv_func_$1_link=no])
289       ])
290     fi
291     AC_MSG_RESULT($glibcxx_cv_func_$1_link)
292     define([NAME], [translit([$1],[abcdefghijklmnopqrstuvwxyz],
293                                   [ABCDEFGHIJKLMNOPQRSTUVWXYZ])])
294     if test x$glibcxx_cv_func_$1_link = x"yes"; then
295       AC_DEFINE([HAVE_]NAME, 1, [Define if the compiler/host combination has $1.])
296     fi
297     undefine([NAME])
298   fi
299 ])
300
301
302 dnl
303 dnl Check to see what builtin math functions are supported
304 dnl
305 dnl check for __builtin_abs
306 dnl check for __builtin_fabsf
307 dnl check for __builtin_fabs
308 dnl check for __builtin_fabl
309 dnl check for __builtin_labs
310 dnl check for __builtin_sqrtf
311 dnl check for __builtin_sqrtl
312 dnl check for __builtin_sqrt
313 dnl check for __builtin_sinf
314 dnl check for __builtin_sin
315 dnl check for __builtin_sinl
316 dnl check for __builtin_cosf
317 dnl check for __builtin_cos
318 dnl check for __builtin_cosl
319 dnl
320 dnl GLIBCXX_CHECK_BUILTIN_MATH_SUPPORT
321 AC_DEFUN([GLIBCXX_CHECK_BUILTIN_MATH_SUPPORT], [
322   dnl Test for builtin math functions.
323   dnl These are made in gcc/c-common.c
324   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_abs)
325   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_fabsf)
326   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_fabs)
327   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_fabsl)
328   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_labs)
329
330   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sqrtf)
331   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sqrt)
332   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sqrtl)
333
334   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sinf)
335   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sin)
336   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sinl)
337
338   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_cosf)
339   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_cos)
340   GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_cosl)
341 ])
342
343 dnl
344 dnl Check to see what the underlying c library is like
345 dnl These checks need to do two things:
346 dnl 1) make sure the name is declared when using the c++ compiler
347 dnl 2) make sure the name has "C" linkage
348 dnl This might seem like overkill but experience has shown that it's not...
349 dnl
350 dnl Define HAVE_STRTOLD if "strtold" is declared and links
351 dnl Define HAVE_STRTOF if "strtof" is declared and links
352 dnl
353 dnl GLIBCXX_CHECK_STDLIB_SUPPORT
354 AC_DEFUN([GLIBCXX_CHECK_STDLIB_SUPPORT], [
355   ac_test_CXXFLAGS="${CXXFLAGS+set}"
356   ac_save_CXXFLAGS="$CXXFLAGS"
357   CXXFLAGS='-fno-builtin -D_GNU_SOURCE'
358
359   GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2(strtold)
360   GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2(strtof)
361
362   CXXFLAGS="$ac_save_CXXFLAGS"
363 ])
364
365 dnl
366 dnl Check to see what the underlying c library or math library is like.
367 dnl These checks need to do two things:
368 dnl 1) make sure the name is declared when using the c++ compiler
369 dnl 2) make sure the name has "C" linkage
370 dnl This might seem like overkill but experience has shown that it's not...
371 dnl
372 dnl Define HAVE_CARGF etc if "cargf" is found.
373 dnl
374 dnl GLIBCXX_CHECK_MATH_SUPPORT
375 AC_DEFUN([GLIBCXX_CHECK_MATH_SUPPORT], [
376   ac_test_CXXFLAGS="${CXXFLAGS+set}"
377   ac_save_CXXFLAGS="$CXXFLAGS"
378   CXXFLAGS='-fno-builtin -D_GNU_SOURCE'
379
380   dnl Check libm
381   AC_CHECK_LIB(m, sin, libm="-lm")
382   ac_save_LIBS="$LIBS"
383   LIBS="$LIBS $libm"
384
385   dnl Check to see if certain C math functions exist.
386   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(isinf)
387   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(isnan)
388   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(finite)
389   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(copysign)
390   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3(sincos)
391   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(fpclass)
392   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(qfpclass)
393   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(hypot)
394
395   dnl Check to see if basic C math functions have float versions.
396   GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1(float trig,
397                                           float_trig,
398                                           acosf asinf atanf \
399                                           cosf sinf tanf \
400                                           coshf sinhf tanhf)
401   GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1(float round,
402                                           float_round,
403                                           ceilf floorf)
404   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(expf)
405   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(isnanf)
406   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(isinff)
407   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(atan2f)
408   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(fabsf)
409   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(fmodf)
410   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(frexpf)
411   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(hypotf)
412   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(ldexpf)
413   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(logf)
414   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(log10f)
415   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(modff)
416   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(modf)
417   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(powf)
418   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(sqrtf)
419   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3(sincosf)
420   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(finitef)
421
422   dnl Check to see if basic C math functions have long double versions.
423   GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1(long double trig,
424                                           long_double_trig,
425                                           acosl asinl atanl \
426                                           cosl sinl tanl \
427                                           coshl sinhl tanhl)
428   GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1(long double round,
429                                           long_double_round,
430                                           ceill floorl)
431   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(isnanl)
432   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(isinfl)
433   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(copysignl)
434   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(atan2l)
435   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(expl)
436   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(fabsl)
437   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(fmodl)
438   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(frexpl)
439   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(hypotl)
440   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(ldexpl)
441   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(logl)
442   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(log10l)
443   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(modfl)
444   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2(powl)
445   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(sqrtl)
446   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3(sincosl)
447   GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1(finitel)
448
449   dnl Some runtimes have these functions with a preceding underscore. Please
450   dnl keep this sync'd with the one above. And if you add any new symbol,
451   dnl please add the corresponding block in the @BOTTOM@ section of acconfig.h.
452   dnl Check to see if certain C math functions exist.
453
454   dnl Check to see if basic C math functions have float versions.
455   GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1(_float trig,
456                                           _float_trig,
457                                           _acosf _asinf _atanf \
458                                           _cosf _sinf _tanf \
459                                           _coshf _sinhf _tanhf)
460   GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1(_float round,
461                                           _float_round,
462                                           _ceilf _floorf)
463
464   dnl Check to see if basic C math functions have long double versions.
465   GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1(_long double trig,
466                                           _long_double_trig,
467                                           _acosl _asinl _atanl \
468                                           _cosl _sinl _tanl \
469                                           _coshl _sinhl _tanhl)
470   GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1(_long double round,
471                                           _long_double_round,
472                                           _ceill _floorl)
473
474   LIBS="$ac_save_LIBS"
475   CXXFLAGS="$ac_save_CXXFLAGS"
476 ])
477
478
479 dnl
480 dnl Check to see if there is native support for complex
481 dnl
482 dnl Don't compile bits in math/* if native support exits.
483 dnl
484 dnl Define USE_COMPLEX_LONG_DOUBLE etc if "copysignl" is found.
485 dnl
486 dnl GLIBCXX_CHECK_COMPLEX_MATH_SUPPORT
487 AC_DEFUN([GLIBCXX_CHECK_COMPLEX_MATH_SUPPORT], [
488   dnl Check for complex versions of math functions of platform.  This will
489   dnl always pass if libm is available, and fail if it isn't.  If it is
490   dnl available, we assume we'll need it later, so add it to LIBS.
491   AC_CHECK_LIB(m, main)
492   AC_REPLACE_MATHFUNCS(copysignf)
493
494   dnl For __signbit to signbit conversions.
495   dnl Not sure why this is done, as these will be macros mostly. 
496   dnl Should probably coordinate this with std_cmath.h.
497   AC_CHECK_FUNCS([__signbit], , [LIBMATHOBJS="$LIBMATHOBJS signbit.lo"])
498
499   AC_CHECK_FUNCS([__signbitf], , [LIBMATHOBJS="$LIBMATHOBJS signbitf.lo"])
500
501   dnl Compile the long double complex functions only if the function
502   dnl provides the non-complex long double functions that are needed.
503   dnl Currently this includes copysignl, which should be
504   dnl cached from the GLIBCXX_CHECK_MATH_SUPPORT macro, above.
505   if test x$ac_cv_func_copysignl = x"yes"; then
506     AC_CHECK_FUNCS([__signbitl], , [LIBMATHOBJS="$LIBMATHOBJS signbitl.lo"])
507   fi
508
509   # Used in libmath/Makefile.am.
510   if test -n "$LIBMATHOBJS"; then
511     need_libmath=yes
512   fi
513   AC_SUBST(LIBMATHOBJS)
514 ])
515
516
517 # Check for functions in math library.
518 # Ulrich Drepper <drepper@cygnus.com>, 1998.
519 #
520 # This file can be copied and used freely without restrictions.  It can
521 # be used in projects which are not available under the GNU Public License
522 # but which still want to provide support for the GNU gettext functionality.
523 # Please note that the actual code is *not* freely available.
524 #
525 # serial 1
526 #
527 dnl AC_REPLACE_MATHFUNCS(FUNCTION...)
528 AC_DEFUN([AC_REPLACE_MATHFUNCS],
529 [AC_CHECK_FUNCS([$1], , [LIBMATHOBJS="$LIBMATHOBJS ${ac_func}.lo"])])