You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bn...@apache.org on 2002/11/16 01:29:29 UTC

cvs commit: httpd-2.0/build mkconfNW.awk

bnicholes    2002/11/15 16:29:29

  Modified:    build    mkconfNW.awk
  Log:
  Updated the NetWare make conf script to handle the new Listen statements
  
  Revision  Changes    Path
  1.10      +7 -0      httpd-2.0/build/mkconfNW.awk
  
  Index: mkconfNW.awk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/mkconfNW.awk,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- mkconfNW.awk	23 Oct 2002 22:31:04 -0000	1.9
  +++ mkconfNW.awk	16 Nov 2002 00:29:29 -0000	1.10
  @@ -20,6 +20,8 @@
       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@@/ {
  @@ -69,6 +71,11 @@
   match ($0,/@exp_.*@/) {
       s=substr($0,RSTART+5,RLENGTH-6)
       sub(/@exp_.*@/,B[s],$0)
  +}
  +
  +match ($0,/@nonssl_.*@/) {
  +    s=substr($0,RSTART+8,RLENGTH-9)
  +    sub(/@nonssl_.*@/,B[s],$0)
   }
   
   {