Subject: | Prereq missing in Makefile.PL |
( This caused a number of cpan-testers failures )
MISSING PREREQUISITES:
It was observed that the test suite seem to fail without these modules:
Sys::SigAction
As such, adding the prerequisite module(s) to 'PREREQ_PM' in your
Makefile.PL should solve this problem. For example:
WriteMakefile(
AUTHOR => 'HASSEILY (cpanplus-info[at]lists.sf.net)',
... # other information
PREREQ_PM => {
'Sys::SigAction' => '0', # or a minimum working 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!
Mark