Subject: | Makefile.PL does not declare prerequisites, dies instead |
The Makefile.PL contains a
require XML::Parser;
to check for the excistence of a prerequisite. This has the disadvantage
that the Makefile.PL dies if XML::Parser is not installed yet and
automated installers do not get the information they need, namely
prerequisites.
Please use
WriteMakefile(
...
PREREQ_PM => { "XML::Parser" => 2.34 },
);
instead.
Thank you,