You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Pamela O'Shea <pa...@elive.ie> on 2000/08/04 12:23:29 UTC

APACHE::ASP install problem ?

Hi, i have an installation problem, im using apache 1.3.12 and have the
mod_perl installed.
The 'httpd -l' lists the mod_perl as being installed. Bu when i do 'perl
Makefile.PL' in the
Apache-ASP source tree i get the following errors :

[root@dilitium Apache-ASP-2.03]# perl Makefile.PL
Checking for the prerequisite modules...
 ... found Apache !
 ... found Carp !
 ... found Data::Dumper !
 ... found Fcntl !
 !!! you need the module: HTTP::Date
     WHY: Provides mapping between Perl time() and HTTP dates
 ... found MD5 !
 !!! you need the module: MLDBM
     WHY: This is used for reading and writing multi-level hashes on
disk
 ... found SDBM_File !


, where can i find the HTTP::Date and the MLDBM modules ??, or is this a
sympton of a mod_perl problem ?
thanks in advance,

Regards,
Pamela


Re: APACHE::ASP install problem ?

Posted by Ime Smits <im...@iae.nl>.
| [root@dilitium Apache-ASP-2.03]# perl Makefile.PL
| Checking for the prerequisite modules...
|  !!! you need the module: HTTP::Date
|      WHY: Provides mapping between Perl time() and HTTP dates
|  ... found MD5 !
|  !!! you need the module: MLDBM
|      WHY: This is used for reading and writing multi-level hashes on
| disk
|  ... found SDBM_File !

If this is a plain perl-install, prepare for a lot of other errors even if
you find them. Try using the cpan installer. It will get all dependencies
automatically: perl -MCPAN -e shell, then just tell it to "install
Apache::ASP".

Ime