From: Max Kanat-Alexander Date: Tue, 28 Dec 2010 22:47:33 +0000 (-0800) Subject: Bug 621597: Make mod_perl.pl do the INC configuration itself, instead of X-Git-Tag: bugzilla-4.1.1~113 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74fb5b946e08a966bc24ed7855ff4eae364a31a3;p=thirdparty%2Fbugzilla.git Bug 621597: Make mod_perl.pl do the INC configuration itself, instead of requiring it to be in httpd.conf. r=dkl, a=mkanat --- diff --git a/docs/en/xml/installation.xml b/docs/en/xml/installation.xml index cf4584a707..79ad19fbc8 100644 --- a/docs/en/xml/installation.xml +++ b/docs/en/xml/installation.xml @@ -1132,7 +1132,7 @@ max_allowed_packet=4M - PerlSwitches -I/var/www/html/bugzilla -I/var/www/html/bugzilla/lib -w -T + PerlSwitches -w -T PerlConfigRequire /var/www/html/bugzilla/mod_perl.pl diff --git a/mod_perl.pl b/mod_perl.pl index abd0181030..3551abdaf3 100644 --- a/mod_perl.pl +++ b/mod_perl.pl @@ -18,6 +18,13 @@ package Bugzilla::ModPerl; use strict; +# This sets up our libpath without having to specify it in the mod_perl +# configuration. +use File::Basename; +use lib dirname(__FILE__); +use Bugzilla::Constants (); +use lib Bugzilla::Constants::bz_locations()->{'ext_libpath'}; + # If you have an Apache2::Status handler in your Apache configuration, # you need to load Apache2::Status *here*, so that any later-loaded modules # can report information to Apache2::Status. @@ -36,7 +43,6 @@ use Bugzilla (); # Loading Bugzilla.pm doesn't load this, though, and we want it preloaded. use Bugzilla::BugMail (); use Bugzilla::CGI (); -use Bugzilla::Constants (); use Bugzilla::Extension (); use Bugzilla::Install::Requirements (); use Bugzilla::Util ();