diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1998-07-29 14:28:14 +0100 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-02 03:39:27 +0000 |
commit | a8693bd382efcc6d770233a60c0e99bac574fc57 (patch) | |
tree | 4d0b516fb4876b81dc3e42f647050554c5f810b7 /Porting/fixCORE | |
parent | 268118b230b225b283ec54291ec9a46f100cfddc (diff) | |
download | perl-a8693bd382efcc6d770233a60c0e99bac574fc57.tar.gz |
[Patch] Math::Complex - Ambiguous call resolved as CORE::foo()
Message-Id: <199807291228.NAA20055@tiuk.ti.com>
p4raw-id: //depot/maint-5.005/perl@1681
Diffstat (limited to 'Porting/fixCORE')
-rwxr-xr-x | Porting/fixCORE | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/Porting/fixCORE b/Porting/fixCORE new file mode 100755 index 0000000000..4c586d8969 --- /dev/null +++ b/Porting/fixCORE @@ -0,0 +1,68 @@ +#!/usr/local/bin/perl -w +use Data::Dumper; + +my $targ = shift; +my $inc = join(' ',map("-I$_",@INC)); + +my $work = 1; +while ($work) + { + open(PIPE,"$^X -w $inc -M$targ -e '' 2>&1 |") || die "Cannot open pipe to child:$!"; + my %fix; + while (<PIPE>) + { + if (/^Ambiguous call resolved as CORE::(\w+)\(\), qualify as such or use \& at (\S+) line (\d+)/ + && -f $2 ) + { + my ($var,$file,$line) = ($1,$2,$3); + $fix{$file} = [] unless exists $fix{$file}; + push(@{$fix{$file}},[$line => $var]) unless ($var =~ /^PL_/ || $file =~ /\.h$/); + } + print; + } + close(PIPE); +# warn "Make retured $?\n"; +# last unless $?; + my $changed = 0; + foreach my $file (keys %fix) + { + my @ar = sort( { $a->[0] <=> $b->[0] } @{delete $fix{$file}}); + my @miss; + my $fixed = 0; + @ARGV = ($file); + $. = 0; + local $^I = '.sav'; + while (<>) + { + while (@ar && $. == $ar[0][0]) + { + my ($line,$var) = @{shift(@ar)}; + if (s/(?<!CORE::)\b$var\b(?=\s*\()/CORE::$var/) + { + warn "$file:$line: FIX $var\n"; + $fixed++; + $changed++; + } + else + { + push(@miss,[$line,$var,$_]); + } + } + print; + } + unless ($fixed) + { + rename("$file$^I",$file); + if (@miss) + { + while (@miss) + { + my ($line,$var,$txt) = @{shift(@miss)}; + warn "$file:$line:$var | $txt"; + } + } + } + } + last unless $changed; + } + |