On Thu, 29 Jan 2004, Jost Krieger wrote: > This is an error report generated automatically by CPANPLUS, > version 0.048. > > Below is the error stack during 'make test': > > /usr/local/perl-5.8.1/bin/perl -Iblib/arch -Iblib/lib \ > t/TEST -clean > APACHE_PORT= APACHE_USER= APACHE= APXS= APACHE_GROUP= \ > /usr/local/perl-5.8.1/bin/perl -Iblib/arch -Iblib/lib \ > t/TEST -bugreport -verbose=0 > !!! no test server configured, please specify an httpd or apxs or put either in your > PATH. For example: > t/TEST -httpd /path/to/bin/httpd > make: *** [run_tests] Error 1
It looks to me like you did not properly generate the makefile. You need to do perl Makefile.PL -apxs /path/to/apxs as described in the README. e.g.: perl Makefile.PL -apxs /usr/sbin/apxs If you do not do this, then httpd can not start, and make test will fail just as has happened to you here. Regards, Michael Schout GKG.NET, Inc.
