[Catalyst-commits] r6408 - in trunk/Catalyst-Engine-Apache: .
lib/Catalyst/Engine
andyg at dev.catalyst.perl.org
andyg at dev.catalyst.perl.org
Fri May 18 14:00:02 GMT 2007
Author: andyg
Date: 2007-05-18 14:00:01 +0100 (Fri, 18 May 2007)
New Revision: 6408
Modified:
trunk/Catalyst-Engine-Apache/Changes
trunk/Catalyst-Engine-Apache/lib/Catalyst/Engine/Apache.pm
Log:
Apache 1.11 - fix issue with 'use mod_perl;'
Modified: trunk/Catalyst-Engine-Apache/Changes
===================================================================
--- trunk/Catalyst-Engine-Apache/Changes 2007-05-18 05:15:56 UTC (rev 6407)
+++ trunk/Catalyst-Engine-Apache/Changes 2007-05-18 13:00:01 UTC (rev 6408)
@@ -1,5 +1,8 @@
This file documents the revision history for Catalyst::Engine::Apache.
+1.11 2007-05-18 08:30:00
+ - Don't 'use mod_perl;' as this may not work on some mod_perl installations.
+
1.10 2007-05-15 17:40:00
- Properly detect the base when running within a LocationMatch block.
- Use the unparsed URI for building the path instead of Apache's
Modified: trunk/Catalyst-Engine-Apache/lib/Catalyst/Engine/Apache.pm
===================================================================
--- trunk/Catalyst-Engine-Apache/lib/Catalyst/Engine/Apache.pm 2007-05-18 05:15:56 UTC (rev 6407)
+++ trunk/Catalyst-Engine-Apache/lib/Catalyst/Engine/Apache.pm 2007-05-18 13:00:01 UTC (rev 6408)
@@ -9,13 +9,12 @@
use URI::http;
use URI::https;
-use mod_perl;
use constant MP2 => (
exists $ENV{MOD_PERL_API_VERSION} and
$ENV{MOD_PERL_API_VERSION} >= 2
);
-our $VERSION = '1.10';
+our $VERSION = '1.11';
__PACKAGE__->mk_accessors(qw/apache return/);
More information about the Catalyst-commits
mailing list