On 19 May 2004, at 20:22, [EMAIL PROTECTED] wrote:
I noticed that the test suite seem to fail without these modules:
Number::Compare
As such, adding the prerequisite module(s) to 'PREREQ_PM' in your
Makefile.PL should solve this problem. For example:
WriteMakefile(
AUTHOR => 'Richard Clamp ([EMAIL PROTECTED])',
... # other information
PREREQ_PM => {
'Number::Compare' => '0', # or a minimum workable version
}
);
If you are interested in making a more flexible Makefile.PL that can
probe for missing dependencies and install them, ExtUtils::AutoInstall
at <http://search.cpan.org/dist/ExtUtils-AutoInstall/> may be
worth a look.
Thanks! :-)
Your prereq checker sucks, please fix.
--
Richard Clamp <[EMAIL PROTECTED]>