From 55eb455cc954871888a45a27550fa13a316ef80a Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Fri, 19 Jul 2002 19:48:49 +0000 Subject: [PATCH] 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 --- build/make_nw_export.awk | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/build/make_nw_export.awk b/build/make_nw_export.awk index f94d56d6fde..a82c610c1f1 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); -- 2.47.3