]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Set the SSLMutex to default on the NetWare platform and make sure that the file locat...
authorBradley Nicholes <bnicholes@apache.org>
Mon, 22 Jan 2007 16:07:39 +0000 (16:07 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Mon, 22 Jan 2007 16:07:39 +0000 (16:07 +0000)
Submitted by: Guenter Knauf <fuankg apache.org>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@498666 13f79535-47bb-0310-9956-ffa450edef68

build/mkconfNW.awk

index 21964ece5876b6a5dbfb659d084aec9febffbbd3..f6a74ea8488d4c9d36b24e581ca1accd8243c46a 100644 (file)
@@ -33,6 +33,8 @@ BEGIN {
     B["errordir"] = A["ServerRoot"]"/"A["errordir"]
     B["proxycachedir"] = A["ServerRoot"]"/"A["proxycachedir"]
     B["cgidir"] = A["ServerRoot"]"/"A["cgidir"]
+    B["logfiledir"] = A["logfiledir"]
+    B["sysconfdir"] = A["sysconfdir"]
     B["listen_stmt_1"] = "Listen "A["Port"]
     B["listen_stmt_2"] = ""
 }
@@ -82,6 +84,10 @@ BEGIN {
     next
 }
 
+match ($0,/SSLMutex  file:@exp_runtimedir@\/ssl_mutex/) {
+    sub(/SSLMutex  file:@exp_runtimedir@\/ssl_mutex/, "SSLMutex default")
+}
+
 match ($0,/@@.*@@/) {
     s=substr($0,RSTART+2,RLENGTH-4)
     sub(/@@.*@@/,A[s],$0)
@@ -109,7 +115,7 @@ match ($0,/@nonssl_.*@/) {
 
 END {
     if (SSL) {
-       print
+       print ""
        print "#"
        print "# SecureListen: Allows you to securely bind Apache to specific IP addresses "
        print "# and/or ports."