diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-08-04 12:35:12 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-04 07:58:36 +0000 |
commit | e88d9d51c7060736379505196423f683df6bfbed (patch) | |
tree | 91299042a80270b7be10efb446335b04f400ab02 /hints | |
parent | eddcd08e0ccd50653b2703d625aa0f5f898ce779 (diff) | |
download | perl-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')
-rw-r--r-- | hints/darwin.sh | 6 |
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; |