summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-10-20 23:10:56 (GMT)
committerGuido van Rossum <guido@python.org>1997-10-20 23:10:56 (GMT)
commit304dd2defbb13c9e5e8b96020eaa00cd9c18d4b1 (patch)
tree9897bca6081792dd8305f454d5c508d0704dfd3d /configure
parentcbfcb17e964848913f0f8a56b3c138602c1d442d (diff)
downloadcpython-304dd2defbb13c9e5e8b96020eaa00cd9c18d4b1.zip
cpython-304dd2defbb13c9e5e8b96020eaa00cd9c18d4b1.tar.gz
cpython-304dd2defbb13c9e5e8b96020eaa00cd9c18d4b1.tar.bz2
Switch around OPT assignments in Don Beaudry's patch for Olimit (his
code had the assignments switched around). Also rename sharedmodules to lib-dynload.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index bc775d1..6573f4a 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
-# From configure.in Revision: 1.68
+# From configure.in Revision: 1.69
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.12
@@ -1134,7 +1134,7 @@ fi
echo "$ac_t""$ac_cv_olimit_ok" 1>&6
if test $ac_cv_olimit_ok = yes; then
- OPT="$OPT -OPT:Olimit=0"
+ OPT="$OPT -Olimit 1500"
fi
echo $ac_n "checking whether $CC accepts -OPT:Olimit=0""... $ac_c" 1>&6
@@ -1169,7 +1169,7 @@ fi
echo "$ac_t""$ac_cv_opt_olimit_ok" 1>&6
if test $ac_cv_olimit_ok = yes; then
- OPT="$OPT -Olimit 1500"
+ OPT="$OPT -OPT:Olimit=0"
fi
# check for ANSI or K&R ("traditional") preprocessor
@@ -1862,7 +1862,7 @@ then
case $ac_sys_system/$ac_sys_release in
AIX*) LINKFORSHARED='-Wl,-bE:$(srcdir)/python.exp -lld';;
hp*|HP*)
- LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/sharedmodules";;
+ LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
Linux*) LINKFORSHARED="-rdynamic";;
next/*) LINKFORSHARED="-u libsys_s";;
SCO_SV*) LINKFORSHARED="-Bdynamic -dy -Wl,-Bexport";;