Jim Martinez wrote: > What I needed to do was this: > > perl Makefile.PL -httpd /usr/sbin/apache -port select > > The "-port" option is a configure option.
you shouldn't need to use it only during Makefile.PL $ perl Makefile.PL -apxs /apache/2.0/prefork/perl-5.8.6/bin/apxs $ make && make test ... using Apache/2.0.53-dev (prefork MPM) waiting 60 seconds for server to start: ........................ waiting 60 seconds for server to start: ok (waited 23 secs) server localhost.localdomain:8529 started $ t/TEST -port 8890 -v ... using Apache/2.0.53-dev (prefork MPM) waiting 60 seconds for server to start: ................. waiting 60 seconds for server to start: ok (waited 16 secs) server localhost.localdomain:8890 started HTH --Geoff