diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-05 19:41:31 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-05 19:41:31 (GMT) |
commit | 8fe413119c31caee827ab48bd474ad6f8301e6d1 (patch) | |
tree | b6cd906bddf63084396e67596a10d52653a115d2 /configure.in | |
parent | b18f7d3ac16027601dbaa443ecfecfa45d8aee67 (diff) | |
download | cpython-8fe413119c31caee827ab48bd474ad6f8301e6d1.zip cpython-8fe413119c31caee827ab48bd474ad6f8301e6d1.tar.gz cpython-8fe413119c31caee827ab48bd474ad6f8301e6d1.tar.bz2 |
Merged revisions 68312 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68312 | mark.dickinson | 2009-01-04 20:19:41 +0000 (Sun, 04 Jan 2009) | 4 lines
It's wrong to use AC_REPLACE_FUNCS for hypot, since there's no longer any
Python/hypot.c replacement file. Use AC_CHECK_FUNCS instead. This change
should be backported to 2.6 and 3.0.
........
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 3b1736b..84c347a 100644 --- a/configure.in +++ b/configure.in @@ -3169,9 +3169,7 @@ then [Define if tanh(-0.) is -0., or if platform doesn't have signed zeros]) fi -AC_REPLACE_FUNCS(hypot) - -AC_CHECK_FUNCS(acosh asinh atanh copysign expm1 finite isinf isnan log1p) +AC_CHECK_FUNCS([acosh asinh atanh copysign expm1 finite hypot isinf isnan log1p]) LIBS=$LIBS_SAVE |