X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=0d8bdf7ff103360713d6701ead7276a4da07d0ea;hb=9d3e016eb160b2d8a78cd34cec35bda020b9ed99;hp=5057499ea057783a3be3741f801edf759218e1da;hpb=8c11318848e17f92027484614d393b6ebd365f7d;p=catagits%2FCatalyst-Runtime.git diff --git a/Build.PL b/Build.PL index 5057499..0d8bdf7 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, @@ -46,28 +46,39 @@ my $build = Module::Build->new( $build->create_build_script; print( '*' x 80, "\n" ); -print( - (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!\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!"; +print " $banner \n"; print( '*' x 80, "\n" ); +print <<'EOF'; + + ____ _ _ _ + / ___|__ _| |_ __ _| |_ _ ___| |_ + | | / _` | __/ _` | | | | / __| __| + | |__| (_| | || (_| | | |_| \__ \ |_ + \____\__ _|\__\__ _|_|\__ |___/\__| + |___/ carpe diem! + +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 qq/ -*** IMPORTANT NOTE: *** -The Apache engines have been moved to a separate package in Catalyst 5.5. -Please install Catalyst::Engine::Apache if you need Apache support. -/; +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. +EOF