diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 05:04:20 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 05:04:20 +0000 |
commit | cd9bbdd3ea3d81bf18adafee2ee935d42ecfdc27 (patch) | |
tree | f16de4ee13575490120558c88183525c6e52462d /autoconf | |
parent | 1d460f96c7bbf7c57da1ba2030f3647f08a57297 (diff) |
Make sure we test the right variable for the AC_DEFINE
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17302 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/m4/func_isinf.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/m4/func_isinf.m4 b/autoconf/m4/func_isinf.m4 index 1286a7a023..c936bf920d 100644 --- a/autoconf/m4/func_isinf.m4 +++ b/autoconf/m4/func_isinf.m4 @@ -27,7 +27,7 @@ fi AC_SINGLE_CXX_CHECK([ac_cv_func_finite_in_ieeefp_h], [finite], [<ieeefp.h>], [float f; finite(f);]) -if test "$ac_cv_func_finite_in_ieefp_h" = "yes" ; then +if test "$ac_cv_func_finite_in_ieeefp_h" = "yes" ; then AC_DEFINE([HAVE_FINITE_IN_IEEEFP_H],1,[Set to 1 if the finite function is found in <ieeefp.h>]) fi |