You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-commits@perl.apache.org by ph...@apache.org on 2010/02/09 22:11:16 UTC

svn commit: r908220 - in /perl/Apache-Test/trunk: Changes lib/Apache/TestConfig.pm

Author: phred
Date: Tue Feb  9 21:11:15 2010
New Revision: 908220

URL: http://svn.apache.org/viewvc?rev=908220&view=rev
Log:
Add conditional to ignore IfVersion directive if mod_version is not built.

Reported by:  Adam Prime <ad...@utoronto.ca>
Signed off by:  Fred Moyer <ph...@apache.org>

Modified:
    perl/Apache-Test/trunk/Changes
    perl/Apache-Test/trunk/lib/Apache/TestConfig.pm

Modified: perl/Apache-Test/trunk/Changes
URL: http://svn.apache.org/viewvc/perl/Apache-Test/trunk/Changes?rev=908220&r1=908219&r2=908220&view=diff
==============================================================================
--- perl/Apache-Test/trunk/Changes (original)
+++ perl/Apache-Test/trunk/Changes Tue Feb  9 21:11:15 2010
@@ -6,7 +6,10 @@
 
 =over 3
 
-=item 1.31-dev
+=item 1.31-rc2
+
+Add conditional to ignore IfVersion directive if mod_version is not built.
+[Adam Prime <ad...@utoronto.ca>, Fred Moyer <ph...@apache.org>]
 
 PR: 41239
 t/TEST -ping does not return a valid return code to the calling shell

Modified: perl/Apache-Test/trunk/lib/Apache/TestConfig.pm
URL: http://svn.apache.org/viewvc/perl/Apache-Test/trunk/lib/Apache/TestConfig.pm?rev=908220&r1=908219&r2=908220&view=diff
==============================================================================
--- perl/Apache-Test/trunk/lib/Apache/TestConfig.pm (original)
+++ perl/Apache-Test/trunk/lib/Apache/TestConfig.pm Tue Feb  9 21:11:15 2010
@@ -2682,9 +2682,11 @@
 </Directory>
 
 <IfModule @THREAD_MODULE@>
+<IfModule mod_version.c>
 <IfVersion < 2.3.4>
     LockFile             @t_logs@/accept.lock
 </IfVersion>
+</IfModule>
     StartServers         1
     MinSpareThreads      @MinClients@
     MaxSpareThreads      @MinClients@
@@ -2694,9 +2696,11 @@
 </IfModule>
 
 <IfModule perchild.c>
+<IfModule mod_version.c>
 <IfVersion < 2.3.4>
     LockFile             @t_logs@/accept.lock
 </IfVersion>
+</IfModule>
     NumServers           1
     StartThreads         @MinClients@
     MinSpareThreads      @MinClients@
@@ -2706,9 +2710,11 @@
 </IfModule>
 
 <IfModule prefork.c>
+<IfModule mod_version.c>
 <IfVersion < 2.3.4>
     LockFile             @t_logs@/accept.lock
 </IfVersion>
+</IfModule>
     StartServers         @MinClients@
     MinSpareServers      @MinClients@
     MaxSpareServers      @MinClients@