This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[cpan#100183] Add missing "<FH> chunk #" phrase to Carp messages
[perl5.git] / dist / Carp / Makefile.PL
1 use warnings;
2 use strict;
3
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7         NAME => "Carp",
8         VERSION_FROM => "lib/Carp.pm",
9         ABSTRACT_FROM => "lib/Carp.pm",
10         PREREQ_PM => {
11                 "Config" => 0,
12                 "Exporter" => 0,
13                 "ExtUtils::MakeMaker" => 0,
14                 "IPC::Open3" => "1.0103",
15                 "Test::More" => "0.47",
16                 "overload" => 0,
17                 "strict" => 0,
18                 "warnings" => 0,
19         },
20         LICENSE => "perl",
21         INSTALLDIRS => "$]" < 5.011 ? "perl" : "site",
22 );
23
24 1;