X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-Size.git;a=blobdiff_plain;f=Makefile.PL;h=73d38744b88e5e4a65861edd6d21f1375f214d3b;hp=e2dce2035149d936e26f386f3a9a6e788703eedd;hb=fd495cc6d914df3af995a850cc8dd2561d4331b5;hpb=9847261df894191f35b2917704fb21809f8609b7 diff --git a/Makefile.PL b/Makefile.PL index e2dce20..73d3874 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -use 5.008; +use 5.005; use ExtUtils::MakeMaker; use strict; @@ -12,6 +12,7 @@ WriteMakefile( NAME => 'Devel::Size', VERSION_FROM => 'lib/Devel/Size.pm', DEFINE => "-DALIGN_BITS=$ptr_bits", - (eval $ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()), + PREREQ_PM => { 'Test::More' => 0, XSLoader => 0, }, + (eval $ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.005') : ()), (eval $ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()), );