X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=471b1b65abc90d315dea2377ba6517a455a150c0;hb=1143712c6bec3492444f03a91fde0ce081d9540a;hp=c8e3df796d9af8053aa1735ad65a28b961da11a4;hpb=a693340419bd7596e03694b66f1e5ab06dd9fee5;p=catagits%2FCatalyst-Runtime.git diff --git a/Build.PL b/Build.PL index c8e3df7..471b1b6 100644 --- a/Build.PL +++ b/Build.PL @@ -29,7 +29,8 @@ my $build = Module::Build->new( 'Tree::Simple::Visitor::FindByPath' => 0, 'URI' => 1.35, }, - recommends => { 'Catalyst::Engine::Apache' => 0, JSAN => 0 }, + recommends => + { 'Catalyst::Engine::Apache' => 0, FCGI => 0, 'FCGI::ProcManager' => 0 }, create_makefile_pl => 'passthrough', create_readme => 1, script_files => [ glob('script/*') ], @@ -52,7 +53,15 @@ print( print( '*' x 80, "\n" ); eval "use FCGI"; -print qq/Install "FCGI" for FastCGI support.\n/ if $@; +if ($@) { + print qq/Install "FCGI" for FastCGI support.\n/; +} +else { + eval "use FCGI::ProcManager"; + print +qq/Install "FCGI::ProcManager" for multiprocess FastCGI external support.\n/ + if ($@); +} print qq/ *** IMPORTANT NOTE: ***