All the old mutex directives were replaced by Mutex.  IfVersion ==
2.3.4 isn't handled in the patch because of a change to the Mutex
syntax in 2.3.5-dev.

Note that mod_version is now a dependency for APACHE2.
Index: Apache-Test/lib/Apache/TestConfig.pm
===================================================================
--- Apache-Test/lib/Apache/TestConfig.pm        (revision 886154)
+++ Apache-Test/lib/Apache/TestConfig.pm        (working copy)
@@ -2681,8 +2681,17 @@
     AllowOverride None
 </Directory>
 
+<IfDefine APACHE2>
+<IfVersion > 2.3.4>
+    # If file-based mutexes are used, store any mutex files here.
+    Mutex default:@t_logs@
+</IfVersion>
+</IfDefine>
+
 <IfModule @THREAD_MODULE@>
+    <IfVersion < 2.3.4>
     LockFile             @t_logs@/accept.lock
+    </IfVersion>
     StartServers         1
     MinSpareThreads      @MinClients@
     MaxSpareThreads      @MinClients@
@@ -2692,7 +2701,9 @@
 </IfModule>
 
 <IfModule perchild.c>
+    <IfVersion < 2.3.4>
     LockFile             @t_logs@/accept.lock
+    </IfVersion>
     NumServers           1
     StartThreads         @MinClients@
     MinSpareThreads      @MinClients@
@@ -2702,7 +2713,9 @@
 </IfModule>
 
 <IfModule prefork.c>
+    <IfVersion < 2.3.4>
     LockFile             @t_logs@/accept.lock
+    </IfVersion>
     StartServers         @MinClients@
     MinSpareServers      @MinClients@
     MaxSpareServers      @MinClients@

Reply via email to