Skip to content

Commit

Permalink
test: do not LoadModule log_config_module unconditionally
Browse files Browse the repository at this point in the history
LoadModule directive for log_config_module will not work if the module is
built-in.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Johannes Schindelin authored and Junio C Hamano committed Mar 11, 2009
1 parent e47eec8 commit 7d59cee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion t/lib-httpd/apache.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ DocumentRoot www
LogFormat "%h %l %u %t \"%r\" %>s %b" common
CustomLog access.log common
ErrorLog error.log
LoadModule log_config_module modules/mod_log_config.so
<IfModule !mod_log_config.c>
LoadModule log_config_module modules/mod_log_config.so
</IfModule>

<IfDefine Darwin>
LoadModule log_config_module modules/mod_log_config.so
Expand Down

0 comments on commit 7d59cee

Please sign in to comment.