diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2001-11-30 23:29:41 +0100 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2001-11-30 23:29:41 +0100 |
commit | 033b40124543aa3060d58759dfcf220a253a7e68 (patch) | |
tree | 137d3f90743118517cd124c3987e44c6e2c65d8f /build/make_nw_export.awk | |
parent | export file for mod_cgid... (diff) | |
download | apache2-033b40124543aa3060d58759dfcf220a253a7e68.tar.xz apache2-033b40124543aa3060d58759dfcf220a253a7e68.zip |
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.awk | 7 |
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); |