From: Jarkko Hietaniemi Date: Sun, 6 Jul 2003 08:14:48 +0000 (+0000) Subject: FreeBSD: if someone *really* wants to use the system malloc. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7ca4b19ac3a324a55438434cebf9e27504201570;p=p5sagit%2Fp5-mst-13.2.git FreeBSD: if someone *really* wants to use the system malloc. p4raw-id: //depot/perl@20026 --- diff --git a/hints/freebsd.sh b/hints/freebsd.sh index 5818097..479fa2b 100644 --- a/hints/freebsd.sh +++ b/hints/freebsd.sh @@ -95,9 +95,15 @@ case "$osvers" in 4.*) # In FreeBSD 4 and 5 the system malloc is performance-wise # VERY bad for Perl-- we are talking of differences of not # one, but TWO magnitudes. - usemymalloc=y + case "$usemymalloc" in + "") usemymalloc='y' + ;; + esac ;; -5.*) usemymalloc=y +5.*) case "$usemymalloc" in + "") usemymalloc='y' + ;; + esac ;; *) usevfork='true' case "$usemymalloc" in