You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2012/08/20 17:43:15 UTC

svn commit: r1375071 - /httpd/httpd/trunk/build/installwinconf.awk

Author: trawick
Date: Mon Aug 20 15:43:15 2012
New Revision: 1375071

URL: http://svn.apache.org/viewvc?rev=1375071&view=rev
Log:
minor tweaks: fix server version banner, forget about old SSLMutex directive

Modified:
    httpd/httpd/trunk/build/installwinconf.awk

Modified: httpd/httpd/trunk/build/installwinconf.awk
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/build/installwinconf.awk?rev=1375071&r1=1375070&r2=1375071&view=diff
==============================================================================
--- httpd/httpd/trunk/build/installwinconf.awk (original)
+++ httpd/httpd/trunk/build/installwinconf.awk Mon Aug 20 15:43:15 2012
@@ -46,7 +46,7 @@ BEGIN {
         usertree = "C:/Documents and Settings";
     }
 
-    print "Installing Apache HTTP 2.0 server with" >tstfl;
+    print "Installing Apache HTTP Server 2.x with" >tstfl;
     print " DomainName =    " domainname >tstfl;
     print " ServerName =    " servername >tstfl;
     print " ServerAdmin =   " serveradmin >tstfl;
@@ -195,7 +195,6 @@ BEGIN {
           print "#LoadModule xml2enc_module modules/mod_xml2enc.so" > dstfl;
           continue;
         }
-        gsub( /^SSLMutex.*/, "SSLMutex default" );
         gsub( /@@ServerRoot@@/,   serverroot );
         gsub( /@exp_cgidir@/,     serverroot "/cgi-bin" );
         gsub( /@exp_sysconfdir@/, serverroot "/conf" );