diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-07-23 22:17:28 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-07-23 22:17:28 (GMT) |
commit | e004041e96788bc85771dd35bd6763c6d7ec43fb (patch) | |
tree | 151e79e4df4e143c7ff19f1086f6299983464cbd /configure.in | |
parent | 6145a624b8d9232f54eef3cb64777c4ba4c471f4 (diff) | |
download | cpython-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).
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 ;; |