]> git.ipfire.org Git - thirdparty/gcc.git/blame - config/math.m4
[Ada] Warning for out-of-order record representation clauses
[thirdparty/gcc.git] / config / math.m4
CommitLineData
e564d7f5 1dnl GCC_CHECK_LIBM
2dnl
3dnl Check whether -lm is available. This is a pre-requisite for
4dnl GCC_CHECK_MATH_FUNC so that it will link with -lm.
5AC_DEFUN([GCC_CHECK_LIBM],
6[AC_CHECK_LIB([m],[sin])])
7
8dnl GCC_CHECK_MATH_HEADERS
9dnl
10dnl Check for math.h and complex.h. This is a pre-requisite for
11dnl GCC_CHECK_MATH_FUNC so that it includes the right headers.
12dnl (Some systems, such as AIX or OpenVMS may define macro for math
13dnl functions).
14AC_DEFUN([GCC_CHECK_MATH_HEADERS],
15[AC_CHECK_HEADERS_ONCE(math.h complex.h)])
16
6affa8e1 17dnl GCC_CHECK_MATH_FUNC([name])
e564d7f5 18dnl
19dnl Check whether math function NAME is available on the system (by compiling
6affa8e1 20dnl and linking a C program) and run define HAVE_name on success.
e564d7f5 21dnl
22dnl Note that OpenVMS system insists on including complex.h before math.h
23AC_DEFUN([GCC_CHECK_MATH_FUNC],
24[
25 AC_REQUIRE([GCC_CHECK_LIBM])
26 AC_REQUIRE([GCC_CHECK_MATH_HEADERS])
27 AC_CACHE_CHECK([for $1], [gcc_cv_math_func_$1],
f00f02a3 28 [AC_LINK_IFELSE([AC_LANG_SOURCE([
e564d7f5 29#ifdef HAVE_COMPLEX_H
30#include <complex.h>
31#endif
32#ifdef HAVE_MATH_H
33#include <math.h>
34#endif
35
36int (*ptr)() = (int (*)())$1;
37
38int
39main ()
40{
41 return 0;
42}
f00f02a3 43])],
e564d7f5 44[gcc_cv_math_func_$1=yes],
45[gcc_cv_math_func_$1=no])])
46 if test $gcc_cv_math_func_$1 = yes; then
6affa8e1 47 AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_$1),[1],
48 [Define to 1 if you have the `$1' function.])
e564d7f5 49 fi
50])