From: Neal Norwitz Date: Mon, 26 May 2003 14:11:55 +0000 (+0000) Subject: SF patch #719359, fix test_long failure on OSF/1 with vendor cc X-Git-Tag: v2.3c1~607 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b44f16592f4f61b8d2f4c4a2f0a1a256e1679198;p=python 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 --- diff --git a/configure b/configure index ad33c34e7c..1c253bc14a 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.411 . +# 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. # @@ -3648,6 +3648,9 @@ yes) OpenUNIX*|UnixWare*) BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca " ;; + OSF*) + BASECFLAGS="$BASECFLAGS -ieee -std" + ;; SCO_SV*) BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5" ;; diff --git a/configure.in b/configure.in index aae3eca802..4d3af9d194 100644 --- a/configure.in +++ b/configure.in @@ -646,6 +646,9 @@ yes) OpenUNIX*|UnixWare*) BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca " ;; + OSF*) + BASECFLAGS="$BASECFLAGS -ieee -std" + ;; SCO_SV*) BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5" ;;