[Python-checkins] python/dist/src configure,1.401,1.402 configure.in,1.412,1.413

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Mon, 26 May 2003 07:11:58 -0700


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

Modified Files:
	configure configure.in 
Log Message:
SF patch #719359, fix test_long failure on OSF/1 with vendor cc

This also fixes several other bugs and patches by providing
the proper arguments to cc:  738066 and 741806 need -ieee,
693094 needs -std


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.401
retrieving revision 1.402
diff -C2 -d -r1.401 -r1.402
*** configure	26 May 2003 05:37:50 -0000	1.401
--- configure	26 May 2003 14:11:52 -0000	1.402
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.411 .
  # 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.412 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53 for python 2.3.
***************
*** 3649,3652 ****
--- 3649,3655 ----
  	BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca "
  	;;
+     OSF*)
+ 	BASECFLAGS="$BASECFLAGS -ieee -std"
+     	;;
      SCO_SV*)
  	BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5"

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.412
retrieving revision 1.413
diff -C2 -d -r1.412 -r1.413
*** configure.in	26 May 2003 05:37:51 -0000	1.412
--- configure.in	26 May 2003 14:11:55 -0000	1.413
***************
*** 647,650 ****
--- 647,653 ----
  	BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca "
  	;;
+     OSF*)
+ 	BASECFLAGS="$BASECFLAGS -ieee -std"
+     	;;
      SCO_SV*)
  	BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5"