Subject: | v-style versions in PREREQ list |
Hi Roger,
Your Makefile.PL contains unquoted v-style versions in PREREQ_PM.
ExtUtils::MakeMaker cannot handle them, thinking technically of \0\0\8
and \0\0\3 respectively and converting them to 0, making prerequisite
check ineffective. Can you quote versions, replacing
PREREQ_PM => { 'DBI' => 1.607, 'DBD::mysql' => 2.9004,
'Class::Std' => 0.0.8, 'Class::Std::Utils' => 0.0.3 },
with
PREREQ_PM => { 'DBI' => 1.607, 'DBD::mysql' => 2.9004,
'Class::Std' => '0.0.8', 'Class::Std::Utils' => '0.0.3' },
This will make prerequisite check work correctly.
--
Serguei Trouchelle