diff options
author | bjh <bjh@13f79535-47bb-0310-9956-ffa450edef68> | 2001-05-20 05:21:08 +0000 |
---|---|---|
committer | bjh <bjh@13f79535-47bb-0310-9956-ffa450edef68> | 2001-05-20 05:21:08 +0000 |
commit | 84f957672f49866ede6d8464f1254709a0195dea (patch) | |
tree | 76905769a0f578051b05e8477ee2461ad43d20f5 /build | |
parent | 2cc241438907abc535972fa3507c80cc8ac88883 (diff) | |
download | libapr-84f957672f49866ede6d8464f1254709a0195dea.tar.gz |
Include recently added ap_hook_get_* functions in list of exports.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61665 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r-- | build/make_export.awk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/make_export.awk b/build/make_export.awk index cce471204..a92136e77 100644 --- a/build/make_export.awk +++ b/build/make_export.awk @@ -56,6 +56,7 @@ function add_symbol (sym_name) { /^[ \t]*AP_DECLARE_HOOK[(][^,]+,[a-z_]+,.+[)]$/ { split($0, args, ","); add_symbol("ap_hook_" args[2]); + add_symbol("ap_hook_get_" args[2]); add_symbol("ap_run_" args[2]); } |