summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apache/mod_perl/files/apache2-mod_perl-startup.pl')
-rw-r--r--www-apache/mod_perl/files/apache2-mod_perl-startup.pl26
1 files changed, 0 insertions, 26 deletions
diff --git a/www-apache/mod_perl/files/apache2-mod_perl-startup.pl b/www-apache/mod_perl/files/apache2-mod_perl-startup.pl
deleted file mode 100644
index 73740597c108..000000000000
--- a/www-apache/mod_perl/files/apache2-mod_perl-startup.pl
+++ /dev/null
@@ -1,26 +0,0 @@
-use Apache2 ();
-
-use lib qw(/home/httpd/perl);
-
-# enable if the mod_perl 1.0 compatibility is needed
-# #use Apache::compat ();
-
-use ModPerl::Util (); #for CORE::GLOBAL::exit
-
-use Apache::RequestRec ();
-use Apache::RequestIO ();
-use Apache::RequestUtil ();
-
-use Apache::Server ();
-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';
-
-1;