diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2002-07-19 21:48:49 +0200 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2002-07-19 21:48:49 +0200 |
commit | 76e2983dd0a37e1d8d8944e000a29df72961af49 (patch) | |
tree | a38f6976df43e5a9af8b66c3f7170b66149c81f3 /build | |
parent | remove logic which looks for a non-existant ssl.conf file in the docs/conf/ (diff) | |
download | apache2-76e2983dd0a37e1d8d8944e000a29df72961af49.tar.xz apache2-76e2983dd0a37e1d8d8944e000a29df72961af49.zip |
Bringing the NetWare export script up to date with other export scripts
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96130 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r-- | build/make_nw_export.awk | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/build/make_nw_export.awk b/build/make_nw_export.awk index f94d56d6fd..a82c610c1f 100644 --- a/build/make_nw_export.awk +++ b/build/make_nw_export.awk @@ -43,6 +43,27 @@ 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]*APR_DECLARE_INHERIT_SET[^(]*[(][^)]*[)]/ { + sub("[ \t]*APR_DECLARE_INHERIT_SET[^(]*[(]", "", $0) + sub("[)].*$", "", $0) + add_symbol("apr_" $0 "_inherit_set") + next +} + +/^[ \t]*APR_DECLARE_INHERIT_UNSET[^(]*[(][^)]*[)]/ { + sub("[ \t]*APR_DECLARE_INHERIT_UNSET[^(]*[(]", "", $0) + sub("[)].*$", "", $0) + add_symbol("apr_" $0 "_inherit_unset") + next +} + /^[ \t]*(extern[ \t]+)?AP[RU]?_DECLARE_DATA .*;$/ { varname = $NF; gsub( /[*;]/, "", varname); |