diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-04-03 12:20:21 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-04-03 12:20:21 +0000 |
commit | 295c4836ff3c55aa834076b628d35b50b1b4a0d9 (patch) | |
tree | 6f87e7b570ac2b64b2eed6750568f87148b98929 /hints | |
parent | 8cef0c70022a42ce6ce5ecba75ca3cb331d9c87e (diff) | |
download | perl-295c4836ff3c55aa834076b628d35b50b1b4a0d9.tar.gz |
Be polite about usemymalloc.
p4raw-id: //depot/cfgperl@3207
Diffstat (limited to 'hints')
-rw-r--r-- | hints/aix.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index c4fcfc173c..27f884cd28 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -17,10 +17,12 @@ d_setruid='undef' alignbytes=8 -usemymalloc='n' +case "$usemymalloc" in +'') usemymalloc='n' ;; +esac -# Intuiting the existence of system calls under AIX is difficult, -# at best; the safest technique is to find them empirically. +# Intuiting the existence of system calls under AIX is difficult, at best; +# the safest (and slowest...) technique is to find them empirically. usenm='undef' so="a" |