From: Sebastian Riedel Date: Wed, 23 Mar 2005 00:57:50 +0000 (+0000) Subject: updated Makefile.PL X-Git-Tag: 5.7099_04~1724 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=9ada3267f9ef5287152340b192a00be0742a26ab updated Makefile.PL --- diff --git a/Changes b/Changes index b122544..da376b6 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ This file documents the revision history for Perl extension Catalyst. +4.34 XXX XXX XX XX:00:00 2005 + - added some messages to Makefile.PL + 4.33 Wed Mar 23 01:00:00 2005 - documented the log() accessor method in Catalyst (Andrew Ford) - added optional arguments to Catalyst::Log methods (Andrew Ford) diff --git a/Makefile.PL b/Makefile.PL index 95d59ad..df1ee97 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -16,7 +16,11 @@ WriteMakefile( } ); -print( - (qw/draven naughton sri the_jester/)[ int( rand(4) ) ], - " is the greatest and gabb is drunk again!\n" -); +print( (qw/chansen draven fordmason naughton sri the_jester/)[ int( rand(6) ) ], + " is the greatest and gabb is drunk again!\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 $@; diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index e622d7f..8197e79 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -7,7 +7,7 @@ use Catalyst::Log; __PACKAGE__->mk_classdata($_) for qw/_config engine log/; -our $VERSION = '4.33'; +our $VERSION = '4.34'; our @ISA; =head1 NAME