This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
backport EUMM commits
[perl5.git] / dist / ExtUtils-CBuilder / Makefile.PL
CommitLineData
83dcc064 1# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.039.
71b9be80
DG
2use strict;
3use warnings;
4
a0e78e9f
SH
5
6
65b2b0d2 7use ExtUtils::MakeMaker;
a0e78e9f 8
71b9be80 9my %WriteMakefileArgs = (
a0e78e9f 10 "ABSTRACT" => "Compile and link C code for Perl modules",
71b9be80 11 "AUTHOR" => "Ken Williams <kwilliams\@cpan.org>, The Perl 5 Porters",
71b9be80 12 "CONFIGURE_REQUIRES" => {
7a26eb46 13 "ExtUtils::MakeMaker" => 0
71b9be80 14 },
a0e78e9f 15 "DISTNAME" => "ExtUtils-CBuilder",
71b9be80 16 "LICENSE" => "perl",
a0e78e9f 17 "NAME" => "ExtUtils::CBuilder",
71b9be80
DG
18 "PREREQ_PM" => {
19 "Cwd" => 0,
d6f4d13d 20 "ExtUtils::MakeMaker" => "6.30",
71b9be80
DG
21 "File::Basename" => 0,
22 "File::Spec" => "3.13",
23 "File::Temp" => 0,
24 "IO::File" => 0,
25 "IPC::Cmd" => 0,
a0e78e9f 26 "Perl::OSType" => 1,
71b9be80
DG
27 "Text::ParseWords" => 0
28 },
a0e78e9f
SH
29 "TEST_REQUIRES" => {
30 "Test::More" => "0.47"
31 },
83dcc064 32 "VERSION" => "0.280224",
a0e78e9f
SH
33 "test" => {
34 "TESTS" => "t/*.t"
35 }
71b9be80
DG
36);
37
a0e78e9f 38
d6f4d13d
CBW
39my %FallbackPrereqs = (
40 "Cwd" => 0,
41 "ExtUtils::MakeMaker" => "6.30",
42 "File::Basename" => 0,
43 "File::Spec" => "3.13",
44 "File::Temp" => 0,
45 "IO::File" => 0,
46 "IPC::Cmd" => 0,
47 "Perl::OSType" => 1,
48 "Test::More" => "0.47",
49 "Text::ParseWords" => 0
50);
a0e78e9f 51
d6f4d13d
CBW
52
53unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
54 delete $WriteMakefileArgs{TEST_REQUIRES};
55 delete $WriteMakefileArgs{BUILD_REQUIRES};
56 $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
71b9be80
DG
57}
58
59delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
60 unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
61
62$WriteMakefileArgs{INSTALLDIRS} = 'perl'
65b2b0d2 63 if $] >= 5.009003 && $] <= 5.011000;
71b9be80
DG
64
65WriteMakefile(%WriteMakefileArgs);