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/07/19 21:48:49 UTC

cvs commit: httpd-2.0/build make_nw_export.awk

bnicholes    2002/07/19 12:48:49

  Modified:    build    make_nw_export.awk
  Log:
  Bringing the NetWare export script up to date with other export scripts
  
  Revision  Changes    Path
  1.10      +21 -0     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.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- make_nw_export.awk	8 Apr 2002 22:08:34 -0000	1.9
  +++ make_nw_export.awk	19 Jul 2002 19:48:49 -0000	1.10
  @@ -43,6 +43,27 @@
       next
   }
   
  +/^[ \t]*APR_POOL_DECLARE_ACCESSOR[^(]*[(][^)]*[)]/ {
  +    sub("[ \t]*APR_POOL_DECLARE_ACCESSOR[^(]*[(]", "", $0)
  +    sub("[)].*$", "", $0)
  +    add_symbol("apr_" $0 "_pool_get")
  +    next
  +}
  +
  +/^[ \t]*APR_DECLARE_INHERIT_SET[^(]*[(][^)]*[)]/ {
  +    sub("[ \t]*APR_DECLARE_INHERIT_SET[^(]*[(]", "", $0)
  +    sub("[)].*$", "", $0)
  +    add_symbol("apr_" $0 "_inherit_set")
  +    next
  +}
  +
  +/^[ \t]*APR_DECLARE_INHERIT_UNSET[^(]*[(][^)]*[)]/ {
  +    sub("[ \t]*APR_DECLARE_INHERIT_UNSET[^(]*[(]", "", $0)
  +    sub("[)].*$", "", $0)
  +    add_symbol("apr_" $0 "_inherit_unset")
  +    next
  +}
  +
   /^[ \t]*(extern[ \t]+)?AP[RU]?_DECLARE_DATA .*;$/ {
          varname = $NF;
          gsub( /[*;]/, "", varname);