From: dbs Date: Fri, 2 Nov 2007 13:41:59 +0000 (+0000) Subject: Remove "use Apache2 ();" stmts - these do nothing but compilcate PERL5LIB requirements. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7420fb32f534330b4f8be8f46ef51572bd32662d;p=Evergreen.git Remove "use Apache2 ();" stmts - these do nothing but compilcate PERL5LIB requirements. git-svn-id: svn://svn.open-ils.org/ILS/trunk@7971 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/Method.pm b/Open-ILS/src/perlmods/OpenILS/WWW/Method.pm index 9321b337a0..6ebe67e65f 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/Method.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/Method.pm @@ -1,7 +1,6 @@ package OpenILS::WWW::Method; use strict; use warnings; -use Apache2 (); use Apache2::Log; use Apache2::Const -compile => qw(OK REDIRECT :log); use APR::Const -compile => qw(:error SUCCESS); diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/Proxy.pm b/Open-ILS/src/perlmods/OpenILS/WWW/Proxy.pm index 8b34856322..b9ad7dfd06 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/Proxy.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/Proxy.pm @@ -1,7 +1,6 @@ package OpenILS::WWW::Proxy; use strict; use warnings; -use Apache2 (); use Apache2::Log; use Apache2::Const -compile => qw(REDIRECT FORBIDDEN OK NOT_FOUND DECLINED :log); use APR::Const -compile => qw(:error SUCCESS); diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/Redirect.pm b/Open-ILS/src/perlmods/OpenILS/WWW/Redirect.pm index 7c5fa424ed..303529d68d 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/Redirect.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/Redirect.pm @@ -2,7 +2,6 @@ package OpenILS::WWW::Redirect; use strict; use warnings; use Socket; -use Apache2 (); use Apache2::Log; use Apache2::Const -compile => qw(OK REDIRECT :log); use APR::Const -compile => qw(:error SUCCESS); diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/Reporter.pm b/Open-ILS/src/perlmods/OpenILS/WWW/Reporter.pm index 0f29bf4170..573bcd499a 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/Reporter.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/Reporter.pm @@ -3,7 +3,6 @@ use strict; use warnings; use vars qw/$dtype_xform_map $dtype_xform/; -use Apache2 (); use Apache2::Log; use Apache2::Const -compile => qw(OK REDIRECT DECLINED :log); use APR::Const -compile => qw(:error SUCCESS); diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/Web.pm b/Open-ILS/src/perlmods/OpenILS/WWW/Web.pm index a2e9dffa37..922877c23e 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/Web.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/Web.pm @@ -1,7 +1,6 @@ package OpenILS::WWW::Web; use strict; use warnings; -use Apache2 (); use Apache2::Log; use Apache2::Const -compile => qw(OK REDIRECT :log); use APR::Const -compile => qw(:error SUCCESS); diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/XMLRPCGateway.pm b/Open-ILS/src/perlmods/OpenILS/WWW/XMLRPCGateway.pm index 330b22f113..a5ebe525af 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/XMLRPCGateway.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/XMLRPCGateway.pm @@ -2,7 +2,6 @@ package OpenILS::WWW::XMLRPCGateway; use strict; use warnings; use CGI; -use Apache2 (); use Apache2::Log; use Apache2::Const -compile => qw(OK REDIRECT DECLINED NOT_FOUND :log); use APR::Const -compile => qw(:error SUCCESS);