diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-20 18:37:33 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-20 18:37:33 +0000 |
commit | 46c2c6f31cce4e252716017f4e0350b100a578a4 (patch) | |
tree | 35eecd67b1bfa9d3dbe50ad32968a526c12e1bd2 /hints/freebsd.sh | |
parent | 4dfcc30baac9af2364bced02447a6d9d74693f53 (diff) | |
download | perl-46c2c6f31cce4e252716017f4e0350b100a578a4.tar.gz |
In FreeBSD allow one to try using Perl's malloc with threads.
p4raw-id: //depot/perl@21291
Diffstat (limited to 'hints/freebsd.sh')
-rw-r--r-- | hints/freebsd.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hints/freebsd.sh b/hints/freebsd.sh index 396abdd4d9..28e22ac62c 100644 --- a/hints/freebsd.sh +++ b/hints/freebsd.sh @@ -263,8 +263,9 @@ EOM # Even with the malloc mutexes the Perl malloc does not # seem to be threadsafe in FreeBSD? - usemymalloc=n - + case "$usemymalloc" in + '') usemymalloc=n ;; + esac esac EOCBU |