]> granicus.if.org Git - python/commitdiff
Bugfix for #775892: added -mno-fused-madd to BASECFLAGS on MacOSX.
authorJack Jansen <jack.jansen@cwi.nl>
Wed, 23 Jul 2003 22:17:28 +0000 (22:17 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Wed, 23 Jul 2003 22:17:28 +0000 (22:17 +0000)
This makes test_coercion pass on Panther.

Also added a note to NEWS that pythonw works again (it was broken in rc1).

Misc/NEWS
configure
configure.in

index af56c7789e62ceb624df5cbe3955fd8f45018280..034aabc462f8d169cad484859829bf5b88aeb381 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -243,6 +243,11 @@ Mac
 
 - Fixed two bugs in MacOSX framework handling.
 
+- pythonw did not allow user interaction in 2.3rc1, this has been fixed.
+
+- Python is now compiled with -mno-fused-madd, making all tests pass
+  on Panther.
+
 What's New in Python 2.3 beta 2?
 ================================
 
index d067edd70d7fbb8e16281b3ae49b2f57cce0d8c2..8d8e6a5c43e8df7fc914398aa8abff1cb9fb5c06 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 1.425 .
+# From configure.in Revision: 1.426 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.53 for python 2.3.
 #
@@ -3695,7 +3695,7 @@ echo "${ECHO_T}$ac_cv_no_strict_aliasing_ok" >&6
            ;;
        # is there any other compiler on Darwin besides gcc?
        Darwin*)
-           BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp"
+           BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp -mno-fused-madd"
            ;;
     esac
     ;;
index a15a023c585bdcb0014f8abf13479ae6a9156ec3..3c86fde78b719d8c1b26e3bb545852b35de25628 100644 (file)
@@ -664,7 +664,7 @@ yes)
            ;;
        # is there any other compiler on Darwin besides gcc?
        Darwin*)
-           BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp"
+           BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp -mno-fused-madd"
            ;;
     esac
     ;;