summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-07-23 22:17:28 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-07-23 22:17:28 (GMT)
commite004041e96788bc85771dd35bd6763c6d7ec43fb (patch)
tree151e79e4df4e143c7ff19f1086f6299983464cbd
parent6145a624b8d9232f54eef3cb64777c4ba4c471f4 (diff)
downloadcpython-e004041e96788bc85771dd35bd6763c6d7ec43fb.zip
cpython-e004041e96788bc85771dd35bd6763c6d7ec43fb.tar.gz
cpython-e004041e96788bc85771dd35bd6763c6d7ec43fb.tar.bz2
Bugfix for #775892: added -mno-fused-madd to BASECFLAGS on MacOSX.
This makes test_coercion pass on Panther. Also added a note to NEWS that pythonw works again (it was broken in rc1).
-rw-r--r--Misc/NEWS5
-rwxr-xr-xconfigure4
-rw-r--r--configure.in2
3 files changed, 8 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index af56c77..034aabc 100644
--- 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?
================================
diff --git a/configure b/configure
index d067edd..8d8e6a5 100755
--- 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
;;
diff --git a/configure.in b/configure.in
index a15a023..3c86fde 100644
--- a/configure.in
+++ b/configure.in
@@ -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
;;