updated Makefile.PL
[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     }
17 );
18
19 print( (qw/chansen draven fordmason naughton sri the_jester/)[ int( rand(6) ) ],
20     " is the greatest and gabb is drunk again!\n" );
21
22 eval "use mod_perl; use Apache::Request";
23 print qq/Install "mod_perl" and "Apache::Request" for Apache support.\n/ if $@;
24
25 eval "use FCGI";
26 print qq/Install "FCGI" for FastCGI support.\n/ if $@;