Subject: | Wrong version in PREREQ_PM |
Makefile.PL contains wrong version in PREREQ_PM, line
'PREREQ_PM' => { Apache::Htpasswd => 1.5.3 ,
should be changed to
'PREREQ_PM' => { Apache::Htpasswd => '1.5.3' ,
because ExtUtils::MakeMaker doesn't use v-style syntax, and scalar of
1.5.3 will be x01x05x03 actually.
--
Serguei Trouchelle