X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=1d3264d33a07ce55099e98d9399e225f859fb290;hb=8f753f10fd2366d43eef630f40b6ba876d1e9ed5;hp=41f69d38316142ecb2cb35e8d6b47a1a23be0881;hpb=be23fe9fe24cf21c58d877a7f5f10e5670de334d;p=catagits%2FCatalyst-Runtime.git diff --git a/Build.PL b/Build.PL index 41f69d3..1d3264d 100644 --- a/Build.PL +++ b/Build.PL @@ -14,7 +14,7 @@ my $build = Module::Build->new( 'CGI::Cookie' => 0, 'File::Modified' => 0, 'HTML::Entities' => 0, - 'HTTP::Body' => 0.03, + 'HTTP::Body' => 0.4, 'HTTP::Headers' => 1.59, 'HTTP::Request' => 0, 'HTTP::Response' => 0, @@ -33,7 +33,7 @@ my $build = Module::Build->new( 'URI' => 1.35, }, recommends => - { 'Catalyst::Engine::Apache' => 0, FCGI => 0, 'FCGI::ProcManager' => 0 }, + { 'Catalyst::Engine::Apache' => '1.00', FCGI => 0, 'FCGI::ProcManager' => 0 }, create_makefile_pl => 'passthrough', create_readme => 1, script_files => [ glob('script/*') ], @@ -46,16 +46,13 @@ my $build = Module::Build->new( $build->create_build_script; print( '*' x 80, "\n" ); - my $banner = (qw/andyg chansen draven fordmason mst naughton sri jester/)[ int( rand(8) ) ] . " is the greatest and gabb is " . ( (localtime)[2] > 12 ? "drunk" : "hung over" ) - . " again! :)"; -$banner = sprintf '%-76s', $banner; -print "* $banner *\n"; - -print( '*' x 80, "\n\n" ); + . " again!"; +print " $banner \n"; +print( '*' x 80, "\n" ); print <<'EOF'; @@ -70,18 +67,18 @@ EOF eval "use FCGI"; if ($@) { - print qq/Install "FCGI" for FastCGI support.\n/; + print qq/ Install "FCGI" for FastCGI support.\n/; } else { eval "use FCGI::ProcManager"; print -qq/Install "FCGI::ProcManager" for multiprocess FastCGI external support.\n/ +qq/ Install "FCGI::ProcManager" for multiprocess FastCGI external support.\n/ if ($@); } print <<"EOF"; -Important: - The Apache engines have been moved to a separate package in Catalyst 5.5. - Please install Catalyst::Engine::Apache if you need Apache support. + Important: + The Apache engines have been moved to a separate package in Catalyst 5.5. + Please install Catalyst::Engine::Apache if you need Apache support. EOF