diff options
author | 2017-02-05 00:31:51 +0000 | |
---|---|---|
committer | 2017-02-05 00:31:51 +0000 | |
commit | b8851fcc53cbe24fd20b090f26dd149e353f6174 (patch) | |
tree | 4b7c1695865f00ab7a0da30b5632d514848ea3a2 /gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm | |
parent | Add option PCIVERBOSE. (diff) | |
download | wireguard-openbsd-b8851fcc53cbe24fd20b090f26dd149e353f6174.tar.xz wireguard-openbsd-b8851fcc53cbe24fd20b090f26dd149e353f6174.zip |
Fix merge issues, remove excess files - match perl-5.24.1 dist
Diffstat (limited to 'gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm')
-rw-r--r-- | gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm b/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm index 9e835048a0e..ae9298ef311 100644 --- a/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm +++ b/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm @@ -1,8 +1,9 @@ require 5; package Pod::Simple::Transcode; -use vars qw($VERSION ); -$VERSION = '3.28'; +use strict; +use vars qw($VERSION @ISA); +$VERSION = '3.32'; BEGIN { if(defined &DEBUG) {;} # Okay @@ -16,12 +17,12 @@ foreach my $class ( '', ) { $class or die "Couldn't load any encoding classes"; - DEBUG and print "About to try loading $class...\n"; + DEBUG and print STDERR "About to try loading $class...\n"; eval "require $class;"; if($@) { - DEBUG and print "Couldn't load $class: $@\n"; + DEBUG and print STDERR "Couldn't load $class: $@\n"; } else { - DEBUG and print "OK, loaded $class.\n"; + DEBUG and print STDERR "OK, loaded $class.\n"; @ISA = ($class); last; } |