> Dear sir,
>   I follow you but still problem. I follow below.
> 
> (1) perl Makefile.PL APACHE_SRC=../apache_1.3.20/src \
>     NO_HTTPD=1 USE_APACI=1 PREP_HTTPD=1 EVERYTHING=1
> (2) make
> (3) make test
> (4) make install
> 
> When use choice (1), it has messages show in "perl-make.txt".
> When use "make test" (choice (3)), messages show in "make-test.txt".
> 
> And then I follow below.
> 
> cd ../apache_1.3.20
> ./configure \
>     --prefix=/usr/local/apache \
>     --activate-module=src/modules/perl/libperl.a
> 
>   And config "PerlModule Apache::ASP" in httpd.conf. (line 979)
> 
>   When use command "/usr/local/apache/bin/apachectl start",
> it has messages below.
> 
> Syntax error on line 979 of /usr/local/apache/conf/httpd.conf:
> Can't locate Apache/ASP.pm in @INC (@INC contains:

The above perl Makefile.PL commands need to be done
for the Apache::ASP module in particular too, so while 
you are in Apache-ASP-2.21 directory run:

  perl Makefile.PL
  make test
  make install

The above commands looks like what you would do to 
build mod_perl, so I make the distinction.

If this works, then you should be able to run

 perl -MApache::ASP -e ''

with no error.  This is just to test if Apache::ASP
will load in your perl installation.  Hopefully then
you can start your apache without errors.

--Josh

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to