From: Florian Ragwitz <rafl@debian.org>
Date: Sat, 13 Nov 2010 14:33:23 +0000 (+0100)
Subject: Be explicit about the 5.6.0 dependency
X-Git-Tag: Devel-GlobalDestruction-0.03~3
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8801e4f573446f7dcdcc4320f926872074484b44;p=p5sagit%2FDevel-GlobalDestruction.git

Be explicit about the 5.6.0 dependency
---

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,
 	},
 );