p4raw-id: //depot/perl@30418
}
print STDERR "SelfLoader::AUTOLOAD eval: $SL_code\n" if DEBUG;
- eval $SL_code;
+ {
+ no strict;
+ eval $SL_code;
+ }
if ($@) {
$@ =~ s/ at .*\n//;
croak $@;
}
}
push(@stubs, $self->_add_to_cache($name, $currpack, \@lines, $protoype));
+ no strict;
eval join('', @stubs) if @stubs;
}