summaryrefslogtreecommitdiff
path: root/build/make_nw_export.awk
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2001-11-19 23:33:15 +0000
committerBradley Nicholes <bnicholes@apache.org>2001-11-19 23:33:15 +0000
commit4e3aa6d7da530bda7019cbfbbc0e775d2b86ccdd (patch)
tree1eb53b326e440fd0f3256f540fdcd345093d5961 /build/make_nw_export.awk
parentb03492249bb857f083349f27beff0ac70ec5a7d3 (diff)
downloadhttpd-4e3aa6d7da530bda7019cbfbbc0e775d2b86ccdd.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: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92044 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/make_nw_export.awk')
-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 af73caed03..3bd8e50dd4 100644
--- a/build/make_nw_export.awk
+++ b/build/make_nw_export.awk
@@ -40,7 +40,7 @@ function add_symbol (sym_name) {
next
}
-/^[ \t]*AP_DECLARE_HOOK[^(]*[(][^)]*[)]/ {
+/^[ \t]*AP_DECLARE_HOOK[^(]*[(][^)]*/ {
split($0, args, ",")
symbol = args[2]
sub("^[ \t]+", "", symbol)