Subject: | Wrong prerequisite specifications |
The Makefile.PL contains prerequisite specifications like
'Class::DBI::Pager' => ">1",
or
'Class::DBI::Plugin::DeepAbstractSearch' => ">=.05",
This is Build.PL syntax and does not work with Makefile.PL. Rather, the
versions should be specified as plain floating point numbers, e.g.
'Class::DBI::Pager' => 1,
'Class::DBI::Plugin::DeepAbstractSearch => 0.05,
Regards,
Slaven