summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2001-11-19 23:33:33 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2001-11-19 23:33:33 +0000
commite5cf75c4f6c4d29862e2d9f77cc7e0f31d1de5d1 (patch)
treeafdd4a195ca4e243d6accdb28ce06f6629906a2d /build
parent810840a2c6b33a4933b7c79b236e30a266949d45 (diff)
downloadlibapr-e5cf75c4f6c4d29862e2d9f77cc7e0f31d1de5d1.tar.gz
Fixed the AWK script so that it will pick up functions that have been
declared on multiple lines such as create_connection in connection.h. Otherwise multi-line declared functions are omitted from the export list. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62522 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r--build/make_nw_export.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make_nw_export.awk b/build/make_nw_export.awk
index 2b118e967..620dec056 100644
--- a/build/make_nw_export.awk
+++ b/build/make_nw_export.awk
@@ -83,7 +83,7 @@ function add_symbol (sym_name) {
next
}
-/^[ \t]*AP_DECLARE_HOOK[^(]*[(][^)]*[)]/ {
+/^[ \t]*AP_DECLARE_HOOK[^(]*[(][^)]*/ {
split($0, args, ",")
symbol = args[2]
sub("^[ \t]+", "", symbol)