[philcrow2000@yahoo.com - Wed Jun 4 08:45:51 2003]:
Show quoted text> The test for the module use Test::More which does not
> ship with Perl 5.6. Feel free to modify your copy of
> Makefile.PL, but expect the tests to fail if you don't
> have Test::More installed.
>
> Phil Crow
In that case, modify Makefile.PL
and add
WriteMakefile(
...
PREREQ_PM => {
'Test::More' => 0,
},
...
See also perldoc perlnewmod, perldoc ExtUtils::MakeMaker
It is not a good idea to go by the corelist like that.
Peace