Skip Menu |

This queue is for tickets about the DBIx-MySperqlOO CPAN distribution.

Report information
The Basics
Id: 41485
Status: new
Priority: 0/
Queue: DBIx-MySperqlOO

People
Owner: Nobody in particular
Requestors: stro [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.01
Fixed in: 1.01



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