Subject: | XML::CSV has an undeclared prerequisite on Text::CSV_XS |
Greetings,
It was observed that this package seems to fail without the module Text::CSV_XS
As such, adding the prerequisite module(s) to 'PREREQ_PM' in your
Makefile.PL should solve this problem. For example:
WriteMakefile(
AUTHOR => 'ISTERIN (cpanplus-info@lists.sf.net)',
... # other information
PREREQ_PM => {
'Text::CSV_XS' => '0', # or a minimum working version
}
);
Thanks!