From 53ecd51d974a9befce557f213de828c455d28500 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 7 Sep 2004 14:23:53 +0000 Subject: [PATCH] move AC_FUNC_ISINF and AC_FUNC_ISNAN to their own files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16224 91177308-0d34-0410-b5e6-96231b3b80d8 --- autoconf/m4/func_isinf.m4 | 24 ++++++++++++++++++++++++ autoconf/m4/func_isnan.m4 | 18 ++++++++++++++++++ autoconf/m4/single_cxx_check.m4 | 34 ---------------------------------- 3 files changed, 42 insertions(+), 34 deletions(-) create mode 100644 autoconf/m4/func_isinf.m4 create mode 100644 autoconf/m4/func_isnan.m4 diff --git a/autoconf/m4/func_isinf.m4 b/autoconf/m4/func_isinf.m4 new file mode 100644 index 00000000000..dc0c22e9258 --- /dev/null +++ b/autoconf/m4/func_isinf.m4 @@ -0,0 +1,24 @@ +# +# This function determins if the the isinf function isavailable on this +# platform. +# +AC_DEFUN([AC_FUNC_ISINF],[ +AC_SINGLE_CXX_CHECK([HAVE_ISINF_IN_MATH_H], [ac_cv_func_isinf_in_math_h], + [isinf], [], + [#include + int foo(float f) {return isinf(f);}]) +AC_SINGLE_CXX_CHECK([HAVE_ISINF_IN_CMATH], [ac_cv_func_isinf_in_cmath], + [isinf], [], + [#include + int foo(float f) {return isinf(f);}]) +AC_SINGLE_CXX_CHECK([HAVE_STD_ISINF_IN_CMATH], [ac_cv_func_std_isinf_in_cmath], + [std::isinf], [], + [#include + using std::isinf; int foo(float f) {return isinf(f);}]) +AC_SINGLE_CXX_CHECK([HAVE_FINITE_IN_IEEEFP_H], [ac_cv_func_finite_in_ieeefp_h], + [finite], [], + [#include + int foo(float f) {return finite(f);}]) +]) + + diff --git a/autoconf/m4/func_isnan.m4 b/autoconf/m4/func_isnan.m4 new file mode 100644 index 00000000000..8e626fe15b3 --- /dev/null +++ b/autoconf/m4/func_isnan.m4 @@ -0,0 +1,18 @@ +# +# This function determines if the isnan function is available on this +# platform. +# +AC_DEFUN([AC_FUNC_ISNAN],[ +AC_SINGLE_CXX_CHECK([HAVE_ISNAN_IN_MATH_H], [ac_cv_func_isnan_in_math_h], + [isnan], [], + [#include + int foo(float f) {return isnan(f);}]) +AC_SINGLE_CXX_CHECK([HAVE_ISNAN_IN_CMATH], [ac_cv_func_isnan_in_cmath], + [isnan], [], + [#include + int foo(float f) {return isnan(f);}]) +AC_SINGLE_CXX_CHECK([HAVE_STD_ISNAN_IN_CMATH], [ac_cv_func_std_isnan_in_cmath], + [std::isnan], [], + [#include + using std::isnan; int foo(float f) {return isnan(f);}]) +]) diff --git a/autoconf/m4/single_cxx_check.m4 b/autoconf/m4/single_cxx_check.m4 index c5e4b199c67..77ebf38657b 100644 --- a/autoconf/m4/single_cxx_check.m4 +++ b/autoconf/m4/single_cxx_check.m4 @@ -12,37 +12,3 @@ AC_DEFUN([AC_SINGLE_CXX_CHECK], header file.]) fi]) -AC_DEFUN([AC_FUNC_ISNAN],[ -AC_SINGLE_CXX_CHECK([HAVE_ISNAN_IN_MATH_H], [ac_cv_func_isnan_in_math_h], - [isnan], [], - [#include - int foo(float f) {return isnan(f);}]) -AC_SINGLE_CXX_CHECK([HAVE_ISNAN_IN_CMATH], [ac_cv_func_isnan_in_cmath], - [isnan], [], - [#include - int foo(float f) {return isnan(f);}]) -AC_SINGLE_CXX_CHECK([HAVE_STD_ISNAN_IN_CMATH], [ac_cv_func_std_isnan_in_cmath], - [std::isnan], [], - [#include - using std::isnan; int foo(float f) {return isnan(f);}]) -]) - -AC_DEFUN([AC_FUNC_ISINF],[ -AC_SINGLE_CXX_CHECK([HAVE_ISINF_IN_MATH_H], [ac_cv_func_isinf_in_math_h], - [isinf], [], - [#include - int foo(float f) {return isinf(f);}]) -AC_SINGLE_CXX_CHECK([HAVE_ISINF_IN_CMATH], [ac_cv_func_isinf_in_cmath], - [isinf], [], - [#include - int foo(float f) {return isinf(f);}]) -AC_SINGLE_CXX_CHECK([HAVE_STD_ISINF_IN_CMATH], [ac_cv_func_std_isinf_in_cmath], - [std::isinf], [], - [#include - using std::isinf; int foo(float f) {return isinf(f);}]) -AC_SINGLE_CXX_CHECK([HAVE_FINITE_IN_IEEEFP_H], [ac_cv_func_finite_in_ieeefp_h], - [finite], [], - [#include - int foo(float f) {return finite(f);}]) -]) - -- 2.11.0