summaryrefslogtreecommitdiff
path: root/build/make_nw_export.awk
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2001-11-30 22:29:41 +0000
committerBradley Nicholes <bnicholes@apache.org>2001-11-30 22:29:41 +0000
commit033b40124543aa3060d58759dfcf220a253a7e68 (patch)
tree137d3f90743118517cd124c3987e44c6e2c65d8f /build/make_nw_export.awk
parent0b71b9d040cda1d4f95ed0af330994dac8ac1d85 (diff)
downloadhttpd-033b40124543aa3060d58759dfcf220a253a7e68.tar.gz
Sync'ed the NetWare export AWK script to the Unix script
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92268 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/make_nw_export.awk')
-rw-r--r--build/make_nw_export.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/build/make_nw_export.awk b/build/make_nw_export.awk
index 3bd8e50dd4..c07c735184 100644
--- a/build/make_nw_export.awk
+++ b/build/make_nw_export.awk
@@ -52,6 +52,13 @@ function add_symbol (sym_name) {
next
}
+/^[ \t]*APR_POOL_DECLARE_ACCESSOR[^(]*[(][^)]*[)]/ {
+ sub("[ \t]*APR_POOL_DECLARE_ACCESSOR[^(]*[(]", "", $0)
+ sub("[)].*$", "", $0)
+ add_symbol("apr_" $0 "_pool_get")
+ next
+}
+
/^[ \t]*AP[RU]?_DECLARE_DATA .*;$/ {
varname = $NF;
gsub( /[*;]/, "", varname);