In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/ceac08d31e451a6c38e90b0438d90faa777ca77c?hp=15e6cdd91beb4cefae4b65e855d68cf64766965d>

- Log -----------------------------------------------------------------
commit ceac08d31e451a6c38e90b0438d90faa777ca77c
Author: Chris 'BinGOs' Williams <[email protected]>
Date:   Mon Nov 29 22:14:25 2010 +0000

    Change the default for usemymalloc to 'n' for NetBSD
    
    It should not be the default, it isn't the default when perl is
    built in pkgsrc and from personal experience using perl's malloc
    as the default is to enter a world of pain and suffering.
-----------------------------------------------------------------------

Summary of changes:
 hints/netbsd.sh |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/hints/netbsd.sh b/hints/netbsd.sh
index 9e7a4e2..d196418 100644
--- a/hints/netbsd.sh
+++ b/hints/netbsd.sh
@@ -221,3 +221,12 @@ case `uname -m` in
 sparc) d_semctl_semid_ds=undef ;;
 esac
 
+# malloc wrap works
+case "$usemallocwrap" in
+'') usemallocwrap='define' ;;
+esac
+
+# don't use perl malloc by default
+case "$usemymalloc" in
+'') usemymalloc=n ;;
+esac

--
Perl5 Master Repository

Reply via email to