Add ARM files
[dh-make-perl] / dev / arm / libpod-simple-perl / libpod-simple-perl-3.07 / debian / libpod-simple-perl / usr / share / perl5 / Pod / Simple / Transcode.pm
diff --git a/dev/arm/libpod-simple-perl/libpod-simple-perl-3.07/debian/libpod-simple-perl/usr/share/perl5/Pod/Simple/Transcode.pm b/dev/arm/libpod-simple-perl/libpod-simple-perl-3.07/debian/libpod-simple-perl/usr/share/perl5/Pod/Simple/Transcode.pm
new file mode 100644 (file)
index 0000000..434f963
--- /dev/null
@@ -0,0 +1,33 @@
+
+require 5;
+package Pod::Simple::Transcode;
+
+BEGIN {
+  if(defined &DEBUG) {;} # Okay
+  elsif( defined &Pod::Simple::DEBUG ) { *DEBUG = \&Pod::Simple::DEBUG; }
+  else { *DEBUG = sub () {0}; }
+}
+
+foreach my $class (
+  'Pod::Simple::TranscodeSmart',
+  'Pod::Simple::TranscodeDumb',
+  '',
+) {
+  $class or die "Couldn't load any encoding classes";
+  DEBUG and print "About to try loading $class...\n";
+  eval "require $class;";
+  if($@) {
+    DEBUG and print "Couldn't load $class: $@\n";
+  } else {
+    DEBUG and print "OK, loaded $class.\n";
+    @ISA = ($class);
+    last;
+  }
+}
+
+sub _blorp { return; } # just to avoid any "empty class" warning
+
+1;
+__END__
+
+