]> granicus.if.org Git - apache/commitdiff
Updated the NetWare make conf script to handle the new Listen statements
authorBradley Nicholes <bnicholes@apache.org>
Sat, 16 Nov 2002 00:29:29 +0000 (00:29 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Sat, 16 Nov 2002 00:29:29 +0000 (00:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97534 13f79535-47bb-0310-9956-ffa450edef68

build/mkconfNW.awk

index f9d4b33d84cdbaa55eef51d4164e134777f34300..73025fcd569e3bc4e30d5e1cc140a0b1099533ff 100644 (file)
@@ -20,6 +20,8 @@ BEGIN {
     B["errordir"] = A["ServerRoot"]"/"A["errordir"]
     B["proxycachedir"] = A["ServerRoot"]"/"A["proxycachedir"]
     B["cgidir"] = A["ServerRoot"]"/"A["cgidir"]
+    B["listen_stmt_1"] = "Listen "A["Port"]
+    B["listen_stmt_2"] = ""
 }
 
 /@@LoadModule@@/ {
@@ -71,6 +73,11 @@ match ($0,/@exp_.*@/) {
     sub(/@exp_.*@/,B[s],$0)
 }
 
+match ($0,/@nonssl_.*@/) {
+    s=substr($0,RSTART+8,RLENGTH-9)
+    sub(/@nonssl_.*@/,B[s],$0)
+}
+
 {
     print
 }