You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2001/11/28 01:58:12 UTC

cvs commit: httpd-2.0/build make_exports.awk

trawick     01/11/27 16:58:12

  Modified:    build    make_exports.awk
  Log:
  recognize the symbols generated by APR_POOL_DECLARE_ACCESSOR() so
  that exports.c and the .exp files have the necessary references
  
  Revision  Changes    Path
  1.4       +7 -0      httpd-2.0/build/make_exports.awk
  
  Index: make_exports.awk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/make_exports.awk,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- make_exports.awk	2001/07/23 12:40:40	1.3
  +++ make_exports.awk	2001/11/28 00:58:12	1.4
  @@ -97,6 +97,13 @@
       next
   }
   
  +/^[ \t]*APR_POOL_DECLARE_ACCESSOR[^(]*[(][^)]*[)]/ {
  +    sub("[ \t]*APR_POOL_DECLARE_ACCESSOR[^(]*[(]", "", $0)
  +    sub("[)].*$", "", $0)
  +    add_symbol("apr_" $0 "_pool_get")
  +    next
  +}
  +
   /^#[ \t]*if(ndef| !defined[(])([^_]*_)*H/ {
       enter_scope(TYPE_HEADER)
       next