summaryrefslogtreecommitdiff
path: root/hints/darwin.sh
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-08-04 12:35:12 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2003-08-04 07:58:36 +0000
commite88d9d51c7060736379505196423f683df6bfbed (patch)
tree91299042a80270b7be10efb446335b04f400ab02 /hints/darwin.sh
parenteddcd08e0ccd50653b2703d625aa0f5f898ce779 (diff)
downloadperl-e88d9d51c7060736379505196423f683df6bfbed.tar.gz
Re: Can't usemymalloc on OS X
Message-Id: <20030804103512.61a9661c.rgarciasuarez@free.fr> p4raw-id: //depot/perl@20473
Diffstat (limited to 'hints/darwin.sh')
-rw-r--r--hints/darwin.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/hints/darwin.sh b/hints/darwin.sh
index 59f0d63050..23abc0870f 100644
--- a/hints/darwin.sh
+++ b/hints/darwin.sh
@@ -177,8 +177,10 @@ EOCBU
# vfork works
usevfork='true';
-# malloc works
-usemymalloc='n';
+# our malloc works (but allow users to override)
+case "$usemymalloc" om
+'') usemymalloc='n' ;;
+esac
# Locales aren't feeling well.
LC_ALL=C; export LC_ALL;