X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=84887e149e770476d4fc6a53878d867385c0be2d;hb=8801e4f573446f7dcdcc4320f926872074484b44;hp=32612fcb1c56517b1caaf49473dc2e5973fbadbf;hpb=d453ae9795940948ad133fd2d90bd98e94c21cb9;p=p5sagit%2FDevel-GlobalDestruction.git diff --git a/Makefile.PL b/Makefile.PL index 32612fc..84887e1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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, }, );