X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=2066fe87646bcad44725c93be3f6c64a9c88408f;hb=1507f6e06ce9cac06b86caa621e1f9b9e9d618d7;hp=6426fb261874df798341b88f154b22fc78985b35;hpb=5073b9337469e9e5d5d7ec801b38398694ebb8f6;p=p5sagit%2FDevel-Size.git diff --git a/Makefile.PL b/Makefile.PL old mode 100755 new mode 100644 index 6426fb2..2066fe8 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,11 +1,9 @@ +use 5.008; use ExtUtils::MakeMaker; -# See lib/ExtUtils/MakeMaker.pm for details of how to influence -# the contents of the Makefile that is written. + WriteMakefile( - 'NAME' => 'Devel::Size', - 'VERSION_FROM' => 'Size.pm', # finds $VERSION - 'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 - 'LIBS' => [''], # e.g., '-lm' - 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' - 'INC' => '', # e.g., '-I/usr/include/other' + NAME => 'Devel::Size', + VERSION_FROM => 'lib/Devel/Size.pm', + ($ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()), + ($ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()), );