From: Jeff Trawick Date: Wed, 28 Nov 2001 00:58:12 +0000 (+0000) Subject: recognize the symbols generated by APR_POOL_DECLARE_ACCESSOR() so X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1ba147463733792350abac1491368f98f1759cc;p=apache recognize the symbols generated by APR_POOL_DECLARE_ACCESSOR() so that exports.c and the .exp files have the necessary references git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92207 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/make_exports.awk b/build/make_exports.awk index b50768125d..f9ee2561f3 100644 --- a/build/make_exports.awk +++ b/build/make_exports.awk @@ -97,6 +97,13 @@ function add_symbol(symbol) { 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