summaryrefslogtreecommitdiff
path: root/www-apache/mod_perl/files/2.0.3/apache2-mod_perl-startup.pl
blob: afc048ac125b3b7ead0c72a0da770340143b2cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use lib qw(/home/httpd/perl);

# enable if the mod_perl 1.0 compatibility is needed
#use Apache2::compat ();

use ModPerl::Util (); #for CORE::GLOBAL::exit

use Apache2::RequestRec ();
use Apache2::RequestIO ();
use Apache2::RequestUtil ();

use Apache2::ServerRec ();
use Apache2::ServerUtil ();
use Apache2::Connection ();
use Apache2::Log ();

use APR::Table ();

use ModPerl::Registry ();

use Apache2::Const -compile => ':common';
use APR::Const -compile => ':common';

1;