summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-20 14:28:28 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-20 14:28:28 (GMT)
commit487235109bba0cd0b05cb38569a44ea2296c29b0 (patch)
treec4fb45bf1bc2869105d3c0037299caceb3aea6b1 /configure
parent858493251f7ed218d0f7ed5d2382e656bb169094 (diff)
downloadcpython-487235109bba0cd0b05cb38569a44ea2296c29b0.zip
cpython-487235109bba0cd0b05cb38569a44ea2296c29b0.tar.gz
cpython-487235109bba0cd0b05cb38569a44ea2296c29b0.tar.bz2
Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite function is not called isfinite() but finite(). Sorry, my fault. :)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 7 insertions, 3 deletions
diff --git a/configure b/configure
index 5929c23..843e0b5 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 59611 .
+# From configure.in Revision: 59819 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.6.
#
@@ -20373,7 +20373,6 @@ fi
# ************************************
# * Check for mathematical functions *
# ************************************
-# check for hypot() in math library
LIBS_SAVE=$LIBS
LIBS="$LIBS $LIBM"
@@ -20483,7 +20482,12 @@ done
-for ac_func in copysign isfinite isnan isinf
+
+
+
+
+
+for ac_func in acosh asinh atanh copysign expm1 finite isinf isnan log1p
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
{ echo "$as_me:$LINENO: checking for $ac_func" >&5