Change 20026 by [EMAIL PROTECTED] on 2003/07/06 08:14:48

        FreeBSD: if someone *really* wants to use the system malloc.

Affected files ...

... //depot/perl/hints/freebsd.sh#33 edit

Differences ...

==== //depot/perl/hints/freebsd.sh#33 (text) ====
Index: perl/hints/freebsd.sh
--- perl/hints/freebsd.sh#32~19790~     Sun Jun 15 10:22:08 2003
+++ perl/hints/freebsd.sh       Sun Jul  6 01:14:48 2003
@@ -95,9 +95,15 @@
 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
End of Patch.

Reply via email to