--- loncom/startup.pl 2005/06/29 03:55:49 1.21 +++ loncom/startup.pl 2006/03/24 18:05:15 1.25 @@ -1,7 +1,7 @@ #!/usr/bin/perl BEGIN { - eval "use Apache::compat();"; + eval "use Apache2::compat();"; eval "use Apache();"; }; use lib '/home/httpd/lib/perl'; @@ -21,10 +21,14 @@ use HTML::LCParser(); use HTML::TokeParser(); use HTML::TreeBuilder(); use HTML::Entities(); +use Parse::RecDescent(); +use Date::Manip(); use IO::Socket(); use LWP::UserAgent(); use Math::Cephes(); +use Math::Cephes::Matrix qw(mat); use Math::Random(); +use Math::Complex; use Opcode(); use POSIX qw(strftime); use Safe(); @@ -121,6 +125,9 @@ use Apache::portfolio(); use Apache::bridgetask(); # can't include this one due to the way it does it's BEGIN use Apache::loncreateuser(); +use Apache::switchserver(); +use Apache::lonwhatsnew(); + 1; __END__