Skip to content

Commit 5922322

Browse files
Michael J Grubergitster
authored andcommitted
t/lib-httpd: load mod_unixd
In contrast to apache 2.2, apache 2.4 does not load mod_unixd in its default configuration (because there are choices). Thus, with the current config, apache 2.4.10 will not be started and the httpd tests will not run on distros with default apache config (RedHat type). Enable mod_unixd to make the httpd tests run. This does not affect distros negatively which have that config already in their default (Debian type). httpd tests will run on these before and after this patch. Signed-off-by: Michael J Gruber <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 56f37fd commit 5922322

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

t/lib-httpd/apache.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ LockFile accept.lock
6464
<IfModule !mod_mpm_prefork.c>
6565
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
6666
</IfModule>
67+
<IfModule !mod_unixd.c>
68+
LoadModule unixd_module modules/mod_unixd.so
69+
</IfModule>
6770
</IfVersion>
6871

6972
PassEnv GIT_VALGRIND

0 commit comments

Comments
 (0)