summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-05-10 13:39:57 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-05-10 13:39:57 +0000
commitc4163172c9597634a8ddcd74d5bb3acb8cf0a541 (patch)
treec90efe930b0a65a5ea254b6d624bf68a3846d9e7
parentdbb689ea6958331b086deb62f5013240e9d69292 (diff)
downloadperl-c4163172c9597634a8ddcd74d5bb3acb8cf0a541.tar.gz
The #9525+#9526 didn't allow for overriding usemymalloc.
p4raw-id: //depot/perl@10071
-rwxr-xr-xConfigure15
1 files changed, 8 insertions, 7 deletions
diff --git a/Configure b/Configure
index 95cfe1e9f9..875fa9b388 100755
--- a/Configure
+++ b/Configure
@@ -20,7 +20,7 @@
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Tue May 8 22:11:56 EET DST 2001 [metaconfig 3.0 PL70]
+# Generated on Thu May 10 17:37:57 EET DST 2001 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by perlbug@perl.org)
cat >c1$$ <<EOF
@@ -6280,12 +6280,13 @@ eval $inhdr
: determine which malloc to compile in
echo " "
case "$usemymalloc" in
-''|[yY]*|true|$define) dflt='y' ;;
-*) dflt='n' ;;
-esac
-case "$ptrsize" in
-4) ;;
-*) dflt='n' ;;
+[yY]*|true|$define) dflt='y' ;;
+[nN]*|false|$undef) dflt='n' ;;
+*) case "$ptrsize" in
+ 4) dflt='y' ;;
+ *) dflt='n' ;;
+ esac
+ ;;
esac
rp="Do you wish to attempt to use the malloc that comes with $package?"
. ./myread