diff options
author | Craig A. Berry <craigberry@mac.com> | 2005-10-02 21:45:20 +0000 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2005-10-02 21:45:20 +0000 |
commit | 9fa802f37581490059c6502e317e982c6a4bb4ad (patch) | |
tree | 4743f6880710f2bddd108c26ce37ef5df6b8b41e /vms/gen_shrfls.pl | |
parent | 8a7acfb9b07364b45423d76a5a3e8a6d629465ec (diff) | |
download | perl-9fa802f37581490059c6502e317e982c6a4bb4ad.tar.gz |
assorted blead build help for VMS (mostly ithreads-related)
p4raw-id: //depot/perl@25680
Diffstat (limited to 'vms/gen_shrfls.pl')
-rw-r--r-- | vms/gen_shrfls.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vms/gen_shrfls.pl b/vms/gen_shrfls.pl index 6fb1bb9d00..2a940142cb 100644 --- a/vms/gen_shrfls.pl +++ b/vms/gen_shrfls.pl @@ -153,7 +153,7 @@ sub scan_func { if ( $line =~ /(\w+)\s*\(/ ) { print "\troutine name is \\$1\\\n" if $debug > 1; if ($1 eq 'main' || $1 eq 'perl_init_ext' || $1 eq '__attribute__format__' - || (($1 eq 'Perl_stashpv_hvname_match') && ! $use_threads)) { + || $1 eq 'sizeof' || (($1 eq 'Perl_stashpv_hvname_match') && ! $use_threads)) { print "\tskipped\n" if $debug > 1; } else { $fcns{$1}++ } @@ -182,7 +182,7 @@ if ($docc) { else { open(CPP,"$cpp_file") or die "$0: Can't read preprocessed file $cpp_file: $!\n"; } -%checkh = map { $_,1 } qw( thread bytecode byterun proto perlio perlvars intrpvar thrdvar ); +%checkh = map { $_,1 } qw( thread bytecode byterun proto perlapi perlio perlvars intrpvar thrdvar ); $ckfunc = 0; LINE: while (<CPP>) { while (/^#.*vmsish\.h/i .. /^#.*perl\.h/i) { |