diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-20 14:28:28 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-20 14:28:28 (GMT) |
commit | 487235109bba0cd0b05cb38569a44ea2296c29b0 (patch) | |
tree | c4fb45bf1bc2869105d3c0037299caceb3aea6b1 /configure | |
parent | 858493251f7ed218d0f7ed5d2382e656bb169094 (diff) | |
download | cpython-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-x | configure | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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 |