Re: When Storable and Devel::DProf mix, core dump [perl #19385]
[p5sagit/p5-mst-13.2.git] / ext / Devel / DProf / Makefile.PL
CommitLineData
ae7638f4 1BEGIN {
2 require 5.006;
3}
4
583a019e 5use ExtUtils::MakeMaker;
583a019e 6
583a019e 7WriteMakefile(
d7b9cf63 8 NAME => 'Devel::DProf',
9 DISTNAME => 'DProf',
10 VERSION_FROM => 'DProf.pm',
95667ae4 11 clean => { 'FILES' => 'tmon.out t/tmon.out t/err'},
d7b9cf63 12 XSPROTOARG => '-noprototypes',
13 DEFINE => '-DPERLDBf_NONAME=0x40 -DPERLDBf_GOTO=0x80 '
14 .'-DG_NODEBUG=32 -DPL_NEEDED',
15 dist => {
16 COMPRESS => 'gzip -9f',
17 SUFFIX => 'gz',
18 DIST_DEFAULT => 'all tardist',
19 },
20 MAN3PODS => {},
583a019e 21);