From: Bradley Nicholes Date: Mon, 22 Jan 2007 16:06:47 +0000 (+0000) Subject: Set the SSLMutex to default on the NetWare platform and make sure that the file locat... X-Git-Tag: 2.3.0~1927 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=161d3c90d491bdaa1eb327493c47df525faa350c;p=thirdparty%2Fapache%2Fhttpd.git Set the SSLMutex to default on the NetWare platform and make sure that the file locations are being set properly. Submitted by: Guenter Knauf git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@498665 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/mkconfNW.awk b/build/mkconfNW.awk index 97cde0d082d..9fef967999a 100644 --- a/build/mkconfNW.awk +++ b/build/mkconfNW.awk @@ -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"] = "" } @@ -86,6 +88,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) @@ -113,7 +119,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."