You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@apache.org on 2002/04/06 15:48:51 UTC

cvs commit: httpd-2.0/build make_var_export.awk

bjh         02/04/06 05:48:51

  Modified:    build    make_var_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.3       +1 -1      httpd-2.0/build/make_var_export.awk
  
  Index: make_var_export.awk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/make_var_export.awk,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- make_var_export.awk	9 Jun 2001 08:05:53 -0000	1.2
  +++ make_var_export.awk	6 Apr 2002 13:48:51 -0000	1.3
  @@ -47,7 +47,7 @@
   	}
   }
   
  -/^[ \t]*AP[RU]?_DECLARE_DATA .*;$/ {
  +/^[ \t]*(extern[ \t]+)?AP[RU]?_DECLARE_DATA .*;$/ {
          varname = $NF;
          gsub( /[*;]/, "", varname);
          gsub( /\[.*\]/, "", varname);