In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/f43bd6ba6956056680521efe81a53b27ad254e08?hp=7a950fe49b9cfd0728af3040bf916d3b2d41b31c>

- Log -----------------------------------------------------------------
commit f43bd6ba6956056680521efe81a53b27ad254e08
Author: Craig A. Berry <[email protected]>
Date:   Mon Sep 10 20:40:08 2012 -0500

    Identify MallocCfg* globals as variables, not functions.
    
    Otherwise building on VMS with -Dusemymalloc=y fails because we
    enter them as procedures in the linker options file and the linker
    knows we're lying and will have none of it.
-----------------------------------------------------------------------

Summary of changes:
 vms/gen_shrfls.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/vms/gen_shrfls.pl b/vms/gen_shrfls.pl
index f44779e..650b8cf 100644
--- a/vms/gen_shrfls.pl
+++ b/vms/gen_shrfls.pl
@@ -131,7 +131,7 @@ while (my $line = <$makedefs>) {
   # makedef.pl loses distinction between vars and funcs, so
   # use the start of the name to guess and add specific
   # exceptions when we know about them.
-  if ($line =~ m/^PL_/
+  if ($line =~ m/^(PL_|MallocCfg)/
       || $line eq 'PerlIO_perlio'
       || $line eq 'PerlIO_pending') {
     $vars{$line}++;

--
Perl5 Master Repository

Reply via email to