1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.009.
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "FastCGI Server",
"AUTHOR" => "\x{c1}rp\x{e1}d Sz\x{e1}sz <arpad.szasz\@plenum.ro>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Mojo-Server-FastCGI",
"LICENSE" => "artistic_2",
"NAME" => "Mojo::Server::FastCGI",
"PREREQ_PM" => {
"Mojolicious" => "6.43"
},
"TEST_REQUIRES" => {
"File::Slurp" => 0,
"Test::More" => 0
},
"VERSION" => "0.50",
"test" => {
"TESTS" => "t/mojo/*.t"
}
);
my %FallbackPrereqs = (
"File::Slurp" => 0,
"Mojolicious" => "6.43",
"Test::More" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(%WriteMakefileArgs);
|