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