diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-04-18 13:58:18 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-04-18 13:58:18 (GMT) |
commit | f253786a807967c2a7f289fa294b66d5dffadcdd (patch) | |
tree | b5583470a84088050578da953c1ff16946b9ad5e /configure | |
parent | f498113f3f8585f5e7c5f4cedca0108c41628c75 (diff) | |
download | cpython-f253786a807967c2a7f289fa294b66d5dffadcdd.zip cpython-f253786a807967c2a7f289fa294b66d5dffadcdd.tar.gz cpython-f253786a807967c2a7f289fa294b66d5dffadcdd.tar.bz2 |
Add check for C99 round function to configure, and define
a fallback function if round doesn't exist.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 71274 . +# From configure.in Revision: 71663 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 3.1. # @@ -22310,7 +22310,8 @@ fi -for ac_func in acosh asinh atanh copysign expm1 finite hypot log1p + +for ac_func in acosh asinh atanh copysign expm1 finite hypot log1p round do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_func" >&5 |