diff options
Diffstat (limited to 'build/make_exports.awk')
-rw-r--r-- | build/make_exports.awk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build/make_exports.awk b/build/make_exports.awk index b50768125..f9ee2561f 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 |