X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mjo-overlay.git;a=blobdiff_plain;f=www-apache%2Fmod_perl%2Ffiles%2F2.0.3%2Fapache2-mod_perl-startup.pl;fp=www-apache%2Fmod_perl%2Ffiles%2F2.0.3%2Fapache2-mod_perl-startup.pl;h=afc048ac125b3b7ead0c72a0da770340143b2cc1;hp=0000000000000000000000000000000000000000;hb=8fa89247c8fc77a53d5dd9a5d9c4f956295f25cd;hpb=8abf21128f4dd8a65c2c6f416714294cb4d723e1 diff --git a/www-apache/mod_perl/files/2.0.3/apache2-mod_perl-startup.pl b/www-apache/mod_perl/files/2.0.3/apache2-mod_perl-startup.pl new file mode 100644 index 0000000..afc048a --- /dev/null +++ b/www-apache/mod_perl/files/2.0.3/apache2-mod_perl-startup.pl @@ -0,0 +1,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;