blob: dc0c22e9258a1bce234f10e2a1362f0036e9028a [file] [log] [blame]
Reid Spencer53ecd512004-09-07 14:23:53 +00001#
2# This function determins if the the isinf function isavailable on this
3# platform.
4#
5AC_DEFUN([AC_FUNC_ISINF],[
6AC_SINGLE_CXX_CHECK([HAVE_ISINF_IN_MATH_H], [ac_cv_func_isinf_in_math_h],
7 [isinf], [<math.h>],
8 [#include <math.h>
9 int foo(float f) {return isinf(f);}])
10AC_SINGLE_CXX_CHECK([HAVE_ISINF_IN_CMATH], [ac_cv_func_isinf_in_cmath],
11 [isinf], [<cmath>],
12 [#include <cmath>
13 int foo(float f) {return isinf(f);}])
14AC_SINGLE_CXX_CHECK([HAVE_STD_ISINF_IN_CMATH], [ac_cv_func_std_isinf_in_cmath],
15 [std::isinf], [<cmath>],
16 [#include <cmath>
17 using std::isinf; int foo(float f) {return isinf(f);}])
18AC_SINGLE_CXX_CHECK([HAVE_FINITE_IN_IEEEFP_H], [ac_cv_func_finite_in_ieeefp_h],
19 [finite], [<ieeefp.h>],
20 [#include <ieeefp.h>
21 int foo(float f) {return finite(f);}])
22])
23
24