Be explicit about the 5.6.0 dependency
Florian Ragwitz [Sat, 13 Nov 2010 14:33:23 +0000 (15:33 +0100)]
Makefile.PL

index 32612fc..84887e1 100644 (file)
@@ -1,18 +1,20 @@
 #!/usr/bin/perl -w
 
 use strict;
+require 5.006000;
 
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
-       NAME         => 'Devel::GlobalDestruction',
-       VERSION_FROM => 'lib/Devel/GlobalDestruction.pm',
-       INSTALLDIRS  => 'site',
-       SIGN         => 1,
-       PL_FILES     => { },
-       PREREQ_PM    => {
+       NAME             => 'Devel::GlobalDestruction',
+       VERSION_FROM     => 'lib/Devel/GlobalDestruction.pm',
+       INSTALLDIRS      => 'site',
+       SIGN             => 1,
+       PL_FILES         => { },
+    MIN_PERL_VERSION => '5.006000',
+       PREREQ_PM        => {
                'Sub::Exporter' => 0,
-               'Scope::Guard' => 0,
+               'Scope::Guard'  => 0,
        },
 );