]> granicus.if.org Git - apache/commitdiff
Fixed the AWK script so that it will pick up functions that have been
authorBradley Nicholes <bnicholes@apache.org>
Mon, 19 Nov 2001 23:33:15 +0000 (23:33 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Mon, 19 Nov 2001 23:33:15 +0000 (23:33 +0000)
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

build/make_nw_export.awk

index af73caed03a58aaf9dfb2e76f4f63e6f20d3ae67..3bd8e50dd4f6e6e1ca1d0a167e91c55c08f708b9 100644 (file)
@@ -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)