Enforce the minimum perl version requirement in the Makefile.PL
Nicholas Clark [Thu, 14 Apr 2011 19:08:22 +0000 (20:08 +0100)]
This inform CPAN smokers to skip testing on earlier perl versions.

Makefile.PL

index 633ab1c..c5aea47 100644 (file)
@@ -1,6 +1,8 @@
+use 5.008;
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
   NAME => 'Devel::Size',
   VERSION_FROM => 'lib/Devel/Size.pm',
+  ($ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()),
 );