Upgrade ppport.h from version 3.13 to 3.19
[p5sagit/Devel-GlobalDestruction.git] / Makefile.PL
CommitLineData
3a42a9c3 1#!/usr/bin/perl -w
2
3use strict;
8801e4f5 4require 5.006000;
3a42a9c3 5
6use ExtUtils::MakeMaker;
7
8WriteMakefile(
3790e928 9 NAME => 'Devel::GlobalDestruction',
10 VERSION_FROM => 'lib/Devel/GlobalDestruction.pm',
11 INSTALLDIRS => 'site',
12 SIGN => 1,
13 PL_FILES => { },
8801e4f5 14 MIN_PERL_VERSION => '5.006000',
3790e928 15 PREREQ_PM => {
16 'Sub::Exporter' => 0,
3790e928 17 },
eaac10b5 18 (defined ${^GLOBAL_PHASE} ? (XS => {}, C => []) : ()),
3a42a9c3 19);
20