feature check rather than version check
[p5sagit/Devel-GlobalDestruction.git] / Makefile.PL
1 #!/usr/bin/perl -w
2
3 use strict;
4 require 5.006000;
5
6 use ExtUtils::MakeMaker;
7
8 WriteMakefile(
9     NAME             => 'Devel::GlobalDestruction',
10     VERSION_FROM     => 'lib/Devel/GlobalDestruction.pm',
11     INSTALLDIRS      => 'site',
12     SIGN             => 1,
13     PL_FILES         => { },
14     MIN_PERL_VERSION => '5.006000',
15     PREREQ_PM        => {
16         'Sub::Exporter' => 0,
17         'Scope::Guard'  => 0,
18     },
19     (defined ${^GLOBAL_PHASE} ? (XS => {}, C => []) : ()),
20 );
21