make test failed as the t/conf/httpd.conf uses TransferLog, but does not load the log_config module (apparently assuming it's compiled in statically).
This should fix the problem. I'll commit it shortly.
Index: lib/Apache/TestConfig.pm
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
retrieving revision 1.164
diff -u -r1.164 TestConfig.pm
--- lib/Apache/TestConfig.pm 6 Jun 2003 23:45:02 -0000 1.164
+++ lib/Apache/TestConfig.pm 7 Jul 2003 18:40:52 -0000
@@ -1614,7 +1614,10 @@
PidFile @t_logs@/httpd.pid
ErrorLog @t_logs@/error_log
LogLevel debug
-TransferLog @t_logs@/access_log
+
+<IfModule mod_log_config.c>
+ TransferLog @t_logs@/access_log
+</IfModule>
ServerAdmin @ServerAdmin@
__________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
