Updated HTTP::Body dep to 0.6, fixes holoway's POST bug
[catagits/Catalyst-Runtime.git] / Makefile.PL
index 9bfc3b5..19c6441 100644 (file)
@@ -14,7 +14,7 @@ requires 'CGI::Simple::Cookie';
 requires 'Data::Dump';
 requires 'File::Modified';
 requires 'HTML::Entities';
-requires 'HTTP::Body'    => '0.5';
+requires 'HTTP::Body'    => '0.6';
 requires 'HTTP::Headers' => '1.64';
 requires 'HTTP::Request';
 requires 'HTTP::Response';
@@ -37,18 +37,21 @@ feature 'Apache/mod_perl Support',
 
 feature 'FastCGI Support', -default => 0, 'FCGI' => 0, 'FCGI::ProcManager' => 0;
 
+feature 'PAR support', -default => 0, 'PAR' => 0;
+
 install_script glob('script/*.pl');
+auto_install;
 WriteAll;
 
-print( '*' x 80, "\n" );
+print( '*' x 74, "\n" );
 my $banner =
   (qw/andyg chansen draven fordmason mst naughton sri jester
-      nothingmuch LTjake/)[ int( rand(10) ) ]
+      jrockway ningu nothingmuch LTjake/)[ int( rand(12) ) ]
   . " is the greatest and gabb is "
   . ( (localtime)[2] > 12 ? "drunk" : "hung over" )
   . " again!";
 print " $banner \n";
-print( '*' x 80, "\n" );
+print( '*' x 74, "\n" );
 
 eval "use FCGI";
 print qq/ Install "FCGI" for FastCGI support.\n/ if $@;