ext/Opcode/Opcode.pm Opcode extension Perl module
ext/Opcode/Opcode.xs Opcode extension external subroutines
ext/Opcode/ops.pm "Pragma" form of Opcode extension Perl module
-ext/Opcode/Safe.pm Safe extension Perl module
ext/Opcode/t/Opcode.t See if Opcode works
ext/Opcode/t/ops.t See if Opcode works
ext/PerlIO-encoding/encoding.pm PerlIO::encoding
ext/re/t/regop.pl generate debug output for various patterns
ext/re/t/regop.t test RE optimizations by scraping debug output
ext/re/t/re.t see if re pragma works
+ext/Safe/Makefile.PL Safe extension Perl module
+ext/Safe/Safe.pm Safe extension Perl module
ext/Safe/t/safe1.t See if Safe works
ext/Safe/t/safe2.t See if Safe works
ext/Safe/t/safe3.t See if Safe works
'Safe' =>
{
'MAINTAINER' => 'rgarcia',
- 'FILES' => q[ext/Safe ext/Opcode/Safe.pm],
+ 'FILES' => q[ext/Safe],
'CPAN' => 1,
'UPSTREAM' => "blead",
},
--- /dev/null
+# Yes, this is boilerplate and will be abolished "real soon now".
+use strict;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Safe',
+ VERSION_FROM => 'Safe.pm',
+);