Subject: | remove perl-5.004 prereq in Makefile.PL for backward compatibility |
On older Perls with an older version of CPAN.pm, I think the requires
line in Makefile.PL triggers that old CPAN bug where it attempts to
install Perl as a prerequisite:
requires( perl => 5.004);
You can just put "require 5.004" at the top of the Makefile.PL and
achieve the same thing.
-- David