X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=4cc228263973bdb43b5782f0dbf574b4b691ea86;hb=1b2b8bdfa9e663a01bf0470180b355b4d5633b83;hp=28127f05086fcfc6ccc042d74d8cdd65005f00df;hpb=4f6748f101647dd3344339b19510947df6836412;p=catagits%2FCatalyst-Runtime.git diff --git a/Build.PL b/Build.PL index 28127f0..4cc2282 100644 --- a/Build.PL +++ b/Build.PL @@ -6,24 +6,27 @@ my $build = Module::Build->new( license => 'perl', module_name => 'Catalyst', requires => { + 'perl' => '5.8.1', 'UNIVERSAL::require' => 0, - 'CGI::Simple' => 0, + 'CGI' => '3.06', 'Class::Accessor::Fast' => 0, 'Class::Data::Inheritable' => 0, + 'File::Temp' => 0.14, 'HTTP::Daemon' => 0, 'HTML::Entities' => 0, 'HTTP::Headers' => 0, 'HTTP::Request' => 0, 'HTTP::Response' => 0, 'LWP::UserAgent' => 0, - 'Module::Pluggable::Fast' => 0, - 'Path::Class' => 0, + 'Module::Pluggable::Fast' => 0.16, + 'Path::Class' => 0.09, 'Template' => 0, 'Text::ASCIITable' => 0, 'Tree::Simple' => 0, 'Tree::Simple::Visitor::FindByPath' => 0, 'URI' => 0, }, + create_makefile_pl => 'passthrough', script_files => [ glob('script/*') ], test_files => [ glob('t/*.t'), glob('t/*/*.t'), glob('t/*/*/*.t'), glob('t/*/*/*/*.t') @@ -40,8 +43,5 @@ print( ); print( '*' x 80, "\n" ); -eval "use mod_perl; use Apache::Request"; -print qq/Install "mod_perl" and "Apache::Request" for Apache support.\n/ if $@; - eval "use FCGI"; print qq/Install "FCGI" for FastCGI support.\n/ if $@;