summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChip Salzenberg <chip@pobox.com>1999-04-26 23:11:10 +0000
committerTodd Rinaldo <toddr@cpanel.net>2019-10-19 07:03:09 -0500
commitaf508091e22433ea61111e61d255be3595cefa6a (patch)
tree8c03f9ce5c08991f629d569f43c7e6cdf60f58dc
parenta2ff0fcca75f29619a65eb1ed1d783d690b35e48 (diff)
downloadperl-af508091e22433ea61111e61d255be3595cefa6a.tar.gz
Allow AIX to use Perl's malloc if user insists on it.
(from Kurt Starsinic) p4raw-id: //depot/maint-5.004/perl@3280
-rw-r--r--hints/aix.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/hints/aix.sh b/hints/aix.sh
index 353e0e1593..17543949be 100644
--- a/hints/aix.sh
+++ b/hints/aix.sh
@@ -15,7 +15,9 @@ 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.