summaryrefslogtreecommitdiff
blob: 7e784cab5f046397fc3a1e252e1be27630472164 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use Apache2 ();

use lib qw(/home/httpd/perl);

# enable if the mod_perl 1.0 compatibility is needed
use Apache::compat ();
# preload all mp2 modules
use ModPerl::MethodLookup;
ModPerl::MethodLookup::preload_all_modules();

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

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

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

use APR::Table ();

use ModPerl::Registry ();

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

# end of mod_perl2 stuff

#use Apache::Session ();
use CGI ();
use CGI::Cookie ();
use DBI;
#use Apache::Perldoc ();
use Apache::Status ();
use HTML::Mason ();
use HTML::Mason::ApacheHandler ();
use MasonX::Apache2Handler ();

1;