updated Makefile.PL
Sebastian Riedel [Wed, 23 Mar 2005 00:57:50 +0000 (00:57 +0000)]
Changes
Makefile.PL
lib/Catalyst.pm

diff --git a/Changes b/Changes
index b122544..da376b6 100644 (file)
--- 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)
index 95d59ad..df1ee97 100644 (file)
@@ -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 $@;
index e622d7f..8197e79 100644 (file)
@@ -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