summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-05-26 14:11:55 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-05-26 14:11:55 (GMT)
commitb44f16592f4f61b8d2f4c4a2f0a1a256e1679198 (patch)
treed4d2e14d77a6c77eab05b3368c5b5480fc41977f /configure.in
parent54f871e19351af3cc2de39d34fa4fe24cedb92f7 (diff)
downloadcpython-b44f16592f4f61b8d2f4c4a2f0a1a256e1679198.zip
cpython-b44f16592f4f61b8d2f4c4a2f0a1a256e1679198.tar.gz
cpython-b44f16592f4f61b8d2f4c4a2f0a1a256e1679198.tar.bz2
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
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index aae3eca..4d3af9d 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"
;;