From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Sat, 20 Sep 2003 18:37:33 +0000 (+0000)
Subject: In FreeBSD allow one to try using Perl's malloc with threads.
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=46c2c6f31cce4e252716017f4e0350b100a578a4;p=p5sagit%2Fp5-mst-13.2.git

In FreeBSD allow one to try using Perl's malloc with threads.

p4raw-id: //depot/perl@21291
---

diff --git a/hints/freebsd.sh b/hints/freebsd.sh
index 396abdd..28e22ac 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