#### 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;