X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=af77ef5a3bcd88d096f365bc7475900e3637c625;hb=c2e37e5972fc1dd50f7eebdd0b73cea11ae1b8f4;hp=5d39f6160be426204eca8424f108ec58f4ff61a6;hpb=df020cf4e2a33a38d921f3b5f76bfe17d47a27c8;p=catagits%2FCatalyst-Runtime.git diff --git a/Build.PL b/Build.PL index 5d39f61..af77ef5 100644 --- a/Build.PL +++ b/Build.PL @@ -2,7 +2,6 @@ use strict; use Module::Build; my $build = Module::Build->new( - create_makefile_pl => 'passthrough', license => 'perl', module_name => 'Catalyst', requires => { @@ -14,7 +13,7 @@ my $build = Module::Build->new( 'File::Temp' => 0.14, 'HTTP::Daemon' => 0, 'HTML::Entities' => 0, - 'HTTP::Headers' => 0, + 'HTTP::Headers' => 1.59, 'HTTP::Request' => 0, 'HTTP::Response' => 0, 'LWP::UserAgent' => 0, @@ -25,12 +24,13 @@ my $build = Module::Build->new( 'Tree::Simple' => 0, 'Tree::Simple::Visitor::FindByPath' => 0, 'URI' => 0, + 'Time::HiRes' => 0, }, - create_makefile_pl => 'passthrough', - script_files => [ glob('script/*') ], - test_files => [ - glob('t/*.t'), glob('t/*/*.t'), glob('t/*/*/*.t'), glob('t/*/*/*/*.t') - ] + create_makefile_pl => 'passthrough', + create_readme => 1, + script_files => [ glob('script/*') ], + test_files => "t/", + recursive_test_files => 1 ); $build->create_build_script; @@ -43,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 $@;