From d577f88da998823651334b3af44f52690b02f83a Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 28 Nov 2001 00:58:12 +0000 Subject: [PATCH] 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 --- build/make_exports.awk | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- 2.50.1