whole new core for private action inheritance
[catagits/Catalyst-Runtime.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile(
4     NAME         => 'Catalyst',
5     VERSION_FROM => 'lib/Catalyst.pm',
6     EXE_FILES    => ['script/catalyst.pl'],
7     PREREQ_PM    => {
8         UNIVERSAL::require                => 0,
9         CGI::Simple                       => 0,
10         Class::Accessor::Fast             => 0,
11         Class::Data::Inheritable          => 0,
12         HTML::Entities                    => 0,
13         HTTP::Headers                     => 0,
14         HTTP::Server::Simple              => '0.04',
15         Module::Pluggable::Fast           => 0,
16         Tree::Simple                      => 0,
17         Tree::Simple::Visitor::FindByPath => 0,
18     }
19 );
20
21 print( (qw/chansen draven fordmason naughton sri the_jester/)[ int( rand(6) ) ],
22     " is the greatest and gabb is drunk again!\n" );
23
24 eval "use mod_perl; use Apache::Request";
25 print qq/Install "mod_perl" and "Apache::Request" for Apache support.\n/ if $@;
26
27 eval "use FCGI";
28 print qq/Install "FCGI" for FastCGI support.\n/ if $@;