summaryrefslogtreecommitdiffstats
path: root/build/mkconfNW.awk
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2005-04-10 02:18:57 +0200
committerBradley Nicholes <bnicholes@apache.org>2005-04-10 02:18:57 +0200
commit3247d60d7644ff1c026525378e4328aafe7f1d6d (patch)
treeb5a2c06550dee8f3ad3a2a0ba03b38ac37b524d0 /build/mkconfNW.awk
parentAdd two more APIs to the export and import lists for NetWare (diff)
downloadapache2-3247d60d7644ff1c026525378e4328aafe7f1d6d.tar.xz
apache2-3247d60d7644ff1c026525378e4328aafe7f1d6d.zip
Update the NetWare make install target to comply with the new .conf file layout
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@160726 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/mkconfNW.awk')
-rw-r--r--build/mkconfNW.awk20
1 files changed, 11 insertions, 9 deletions
diff --git a/build/mkconfNW.awk b/build/mkconfNW.awk
index fe036545d3..b65c1682a5 100644
--- a/build/mkconfNW.awk
+++ b/build/mkconfNW.awk
@@ -107,13 +107,15 @@ match ($0,/@nonssl_.*@/) {
END {
- print
- print "#"
- print "# SecureListen: Allows you to securely bind Apache to specific IP addresses "
- print "# and/or ports."
- print "#"
- print "# Change this to SecureListen on specific IP addresses as shown below to "
- print "# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)"
- print "#"
- print "#SecureListen 443 \"SSL CertificateDNS\""
+ if (SSL) {
+ print
+ print "#"
+ print "# SecureListen: Allows you to securely bind Apache to specific IP addresses "
+ print "# and/or ports."
+ print "#"
+ print "# Change this to SecureListen on specific IP addresses as shown below to "
+ print "# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)"
+ print "#"
+ print "#SecureListen 443 \"SSL CertificateDNS\""
+ }
}