[Catalyst-dev] [PATCH] File::Slurp not required in Makefile.PL
Steve Peters
steve at fisharerojo.org
Thu Nov 9 04:02:09 GMT 2006
I attempted to install Catalyst on a fresh Perl system and it failed two
tests: optional_lighttpd-fastcgi-non-root.t and optional_lighttpd-fastcgi.t.
The failures were caused by File::Slurp being used, but never mentioned
in the Makefile.PL as a requirement. The patch below adds it as a
requirement.
Steve Peters
steve at fisharerojo.org
--- Makefile.PL.old 2006-11-08 20:27:53.000000000 -0600
+++ Makefile.PL 2006-11-08 20:28:19.000000000 -0600
@@ -13,6 +13,7 @@
requires 'CGI::Simple::Cookie';
requires 'Data::Dump';
requires 'File::Modified';
+requires 'File::Slurp';
requires 'HTML::Entities';
requires 'HTTP::Body' => '0.5';
requires 'HTTP::Headers' => '1.64';
More information about the Catalyst-dev
mailing list