Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>2009-08-19 23:56:05 +0400
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>2009-08-19 23:56:05 +0400
commit2f0e5052d377c71cc47a0d6dcbb26764212ecc34 (patch)
treea8773ab36b85262af98455cfa6f6774de776e9b8 /newlib/configure.in
parent121f0eb23cd5388b96de8af8a34a803f2e6e5e8c (diff)
* configure.in (newlib_cv_ldbl_eq_dbl): Rename cache variable
from newlib_ldbl_eq_dbl. * configure: Regenerate.
Diffstat (limited to 'newlib/configure.in')
-rw-r--r--newlib/configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/configure.in b/newlib/configure.in
index 86b5397c9..b535e8fb1 100644
--- a/newlib/configure.in
+++ b/newlib/configure.in
@@ -430,7 +430,7 @@ fi
AM_CONDITIONAL(HAVE_LONG_DOUBLE, test x"$acnewlib_cv_type_long_double" = x"yes")
AC_CACHE_CHECK(whether long double equals double,
- newlib_ldbl_eq_dbl, [dnl
+ newlib_cv_ldbl_eq_dbl, [dnl
cat > conftest.c <<EOF
#include <float.h>
#if DBL_MANT_DIG == LDBL_MANT_DIG && LDBL_MIN_EXP == DBL_MIN_EXP && \
@@ -443,12 +443,12 @@ EOF
if AC_TRY_COMMAND([${CC} $CFLAGS $CPPFLAGS -c -o conftest.o conftest.c
1>&AS_MESSAGE_LOG_FD])
then
- newlib_ldbl_eq_dbl=yes;
+ newlib_cv_ldbl_eq_dbl=yes;
else
- newlib_ldbl_eq_dbl=no;
+ newlib_cv_ldbl_eq_dbl=no;
fi
rm -f conftest*])
-if test $newlib_ldbl_eq_dbl = yes; then
+if test $newlib_cv_ldbl_eq_dbl = yes; then
AC_DEFINE_UNQUOTED(_LDBL_EQ_DBL)
fi