From: Jonathan Rockway Date: Mon, 23 Oct 2006 09:05:12 +0000 (+0000) Subject: adding PAR as a feature() X-Git-Tag: 5.7099_04~304 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=3c0a4b5445bfcc26d20f038fce7ce23a95eb1197 adding PAR as a feature() --- diff --git a/Makefile.PL b/Makefile.PL index 9bfc3b5..4173fb3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -37,10 +37,13 @@ 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) ) ] @@ -48,7 +51,7 @@ my $banner = . ( (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 $@;