5 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
BEGIN {
use FindBin;
use lib (
"$FindBin::Bin", "$FindBin::Bin/../Lib",
"$FindBin::Bin/../Packages"
);
$ENV{TMPDIR} = $ENV{TEMP} || "";
};
use lib "lib/nach/da"
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
#### startup.pl
##
## StartUp file for mod_perl
##
##
use Apache2 ();
use lib qw (
X:/usr/local/apache/perl
X:/usr/local/perl/lib
X:/usr/local/perl/site/lib
);
#für mod_perl_1-Kompatibilität
use Apache::compat ();
use ModPerl::Util (); #for CORE::GLOBAL::exit
use Apache::RequestRec ();
use Apache::RequestIO ();
use Apache::RequestUtil ();
use Apache::Session ();
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';
use CGI ();
1;
5 Einträge, 1 Seite |