Subject: | Prereq declaration written wrongly |
The Makefile.PL contains the hash reference for PREREQ_PM but the
content of the has is just a list. The following pseudo patch might
express what you intended to write:
- PREREQ_PM=>{Time::Piece, Time::Seconds, DateTime::Event::Easter }
+ PREREQ_PM=>{Time::Piece=>0,Time::Seconds=>0,DateTime::Event::Easter=>0}
HTH, Cheers,