From: Christian Hansen Date: Mon, 4 Apr 2005 05:15:57 +0000 (+0000) Subject: Compile common MP constants, so we can shortcut PerlTransHandler X-Git-Tag: 5.7099_04~1606 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7c655b47ea3da54671ff11bb82e21352bfa6baea;hp=bc146cf406f4e6c188e63f0206de220fab56fb2a;p=catagits%2FCatalyst-Runtime.git Compile common MP constants, so we can shortcut PerlTransHandler --- diff --git a/lib/Catalyst/Engine/Apache/MP1.pm b/lib/Catalyst/Engine/Apache/MP1.pm index c620d4c..842a4de 100644 --- a/lib/Catalyst/Engine/Apache/MP1.pm +++ b/lib/Catalyst/Engine/Apache/MP1.pm @@ -4,6 +4,7 @@ use strict; use base 'Catalyst::Engine::Apache'; use Apache (); +use Apache::Constants qw(:common); use Apache::Request (); use Apache::Cookie (); diff --git a/lib/Catalyst/Engine/Apache/MP2.pm b/lib/Catalyst/Engine/Apache/MP2.pm index fb03a16..1afdfc2 100644 --- a/lib/Catalyst/Engine/Apache/MP2.pm +++ b/lib/Catalyst/Engine/Apache/MP2.pm @@ -5,6 +5,7 @@ use base 'Catalyst::Engine::Apache'; use Apache2 (); use Apache::Connection (); +use Apache::Const ( -compile => qw(:common) ); use Apache::RequestIO (); use Apache::RequestRec (); use Apache::RequestUtil ();