[Python-checkins] r62451 - in python/trunk: configure configure.in

mark.dickinson python-checkins at python.org
Tue Apr 22 02:54:41 CEST 2008


Author: mark.dickinson
Date: Tue Apr 22 02:54:27 2008
New Revision: 62451

Log:
Make configure test for tanh(-0.) == -0. committed in r62447 actually 
work.  (The test wasn't properly linked with libm.  Sigh.)


Modified:
   python/trunk/configure
   python/trunk/configure.in

Modified: python/trunk/configure
==============================================================================
--- python/trunk/configure	(original)
+++ python/trunk/configure	Tue Apr 22 02:54:27 2008
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 62145 .
+# From configure.in Revision: 62447 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for python 2.6.
 #
@@ -20852,6 +20852,9 @@
 # * Check for mathematical functions *
 # ************************************
 
+LIBS_SAVE=$LIBS
+LIBS="$LIBS $LIBM"
+
 # On FreeBSD 6.2, it appears that tanh(-0.) returns 0. instead of
 # -0. on some architectures.
 { echo "$as_me:$LINENO: checking whether tanh preserves the sign of zero" >&5
@@ -20871,6 +20874,7 @@
 /* end confdefs.h.  */
 
 #include <math.h>
+#include <stdlib.h>
 int main() {
     /* return 0 if either negative zeros don't exist
        on this platform or if negative zeros exist
@@ -20927,8 +20931,6 @@
 
 fi
 
-LIBS_SAVE=$LIBS
-LIBS="$LIBS $LIBM"
 
 for ac_func in hypot
 do

Modified: python/trunk/configure.in
==============================================================================
--- python/trunk/configure.in	(original)
+++ python/trunk/configure.in	Tue Apr 22 02:54:27 2008
@@ -2995,12 +2995,16 @@
 # * Check for mathematical functions *
 # ************************************
 
+LIBS_SAVE=$LIBS
+LIBS="$LIBS $LIBM"
+
 # On FreeBSD 6.2, it appears that tanh(-0.) returns 0. instead of
 # -0. on some architectures.
 AC_MSG_CHECKING(whether tanh preserves the sign of zero)
 AC_CACHE_VAL(ac_cv_tanh_preserves_zero_sign, [
 AC_TRY_RUN([
 #include <math.h>
+#include <stdlib.h>
 int main() {
     /* return 0 if either negative zeros don't exist
        on this platform or if negative zeros exist
@@ -3020,8 +3024,6 @@
   [Define if tanh(-0.) is -0., or if platform doesn't have signed zeros])
 fi
 
-LIBS_SAVE=$LIBS
-LIBS="$LIBS $LIBM"
 AC_REPLACE_FUNCS(hypot)
 
 AC_CHECK_FUNCS(acosh asinh atanh copysign expm1 finite isinf isnan log1p)


More information about the Python-checkins mailing list