summaryrefslogtreecommitdiffstats
path: root/build/mkconfNW.awk
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2002-11-16 01:29:29 +0100
committerBradley Nicholes <bnicholes@apache.org>2002-11-16 01:29:29 +0100
commitc2ba645086fbef7bc84ca4a5e85a582d771c4f1f (patch)
tree9a3cde84746980b7838763af530d06f3e3298109 /build/mkconfNW.awk
parentadd missing linebreaks (diff)
downloadapache2-c2ba645086fbef7bc84ca4a5e85a582d771c4f1f.tar.xz
apache2-c2ba645086fbef7bc84ca4a5e85a582d771c4f1f.zip
Updated the NetWare make conf script to handle the new Listen statements
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97534 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/mkconfNW.awk')
-rw-r--r--build/mkconfNW.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/build/mkconfNW.awk b/build/mkconfNW.awk
index f9d4b33d84..73025fcd56 100644
--- a/build/mkconfNW.awk
+++ b/build/mkconfNW.awk
@@ -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
}