[Python-checkins] python/dist/src configure.in,1.426,1.427 configure,1.415,1.416

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Wed, 23 Jul 2003 15:17:30 -0700


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv10386

Modified Files:
	configure.in configure 
Log Message:
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).


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.426
retrieving revision 1.427
diff -C2 -d -r1.426 -r1.427
*** configure.in	22 Jul 2003 15:20:49 -0000	1.426
--- configure.in	23 Jul 2003 22:17:27 -0000	1.427
***************
*** 665,669 ****
  	# is there any other compiler on Darwin besides gcc?
  	Darwin*)
! 	    BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp"
  	    ;;
      esac
--- 665,669 ----
  	# is there any other compiler on Darwin besides gcc?
  	Darwin*)
! 	    BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp -mno-fused-madd"
  	    ;;
      esac

Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.415
retrieving revision 1.416
diff -C2 -d -r1.415 -r1.416
*** configure	22 Jul 2003 15:20:47 -0000	1.415
--- configure	23 Jul 2003 22:17:27 -0000	1.416
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.425 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53 for python 2.3.
--- 1,4 ----
  #! /bin/sh
! # 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.
***************
*** 3696,3700 ****
  	# is there any other compiler on Darwin besides gcc?
  	Darwin*)
! 	    BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp"
  	    ;;
      esac
--- 3696,3700 ----
  	# is there any other compiler on Darwin besides gcc?
  	Darwin*)
! 	    BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp -mno-fused-madd"
  	    ;;
      esac