Subject: | Makefile.PL uses the requires() function wrongly |
The Makefile.PL contains
requires(qw(
perl 5.6.1
Kwiki 0.32
POE::Component::IKC::ClientLite
POE::Component::IRC
YAML
Term::ANSIColor
));
This is read as "I need version number 'POE::Component::IRC' of the POE::Component::IKC::ClientLite module'
More likely you wanted to say
requires(qw(
perl 5.6.1
Kwiki 0.32
POE::Component::IKC::ClientLite 0
POE::Component::IRC 0
YAML 0
Term::ANSIColor 0
));
Thanks & Regards,