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/04/09 00:08:34 UTC

cvs commit: httpd-2.0/build make_nw_export.awk

bnicholes    02/04/08 15:08:34

  Modified:    build    make_nw_export.awk
  Log:
  Fix export of variables that have "extern" before their AP_DECLARE_DATA.
  This includes ap_subreq_core_filter_handle which mod_autoindex.c now needs.
  
  Revision  Changes    Path
  1.9       +1 -1      httpd-2.0/build/make_nw_export.awk
  
  Index: make_nw_export.awk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/make_nw_export.awk,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- make_nw_export.awk	25 Jan 2002 23:38:01 -0000	1.8
  +++ make_nw_export.awk	8 Apr 2002 22:08:34 -0000	1.9
  @@ -43,7 +43,7 @@
       next
   }
   
  -/^[ \t]*AP[RU]?_DECLARE_DATA .*;$/ {
  +/^[ \t]*(extern[ \t]+)?AP[RU]?_DECLARE_DATA .*;$/ {
          varname = $NF;
          gsub( /[*;]/, "", varname);
          gsub( /\[.*\]/, "", varname);