]> gitweb.michael.orlitzky.com - mjo-overlay.git/blob - www-apache/mod_perl/files/2.0.3/apache2-mod_perl-startup.pl
afc048ac125b3b7ead0c72a0da770340143b2cc1
[mjo-overlay.git] / www-apache / mod_perl / files / 2.0.3 / apache2-mod_perl-startup.pl
1 use lib qw(/home/httpd/perl);
2
3 # enable if the mod_perl 1.0 compatibility is needed
4 #use Apache2::compat ();
5
6 use ModPerl::Util (); #for CORE::GLOBAL::exit
7
8 use Apache2::RequestRec ();
9 use Apache2::RequestIO ();
10 use Apache2::RequestUtil ();
11
12 use Apache2::ServerRec ();
13 use Apache2::ServerUtil ();
14 use Apache2::Connection ();
15 use Apache2::Log ();
16
17 use APR::Table ();
18
19 use ModPerl::Registry ();
20
21 use Apache2::Const -compile => ':common';
22 use APR::Const -compile => ':common';
23
24 1;