bnicholes 01/11/19 15:33:33
Modified: build make_nw_export.awk
Log:
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.
Revision Changes Path
1.3 +1 -1 apr/build/make_nw_export.awk
Index: make_nw_export.awk
===================================================================
RCS file: /home/cvs/apr/build/make_nw_export.awk,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- make_nw_export.awk 2001/10/23 23:36:31 1.2
+++ make_nw_export.awk 2001/11/19 23:33:33 1.3
@@ -83,7 +83,7 @@
next
}
-/^[ \t]*AP_DECLARE_HOOK[^(]*[(][^)]*[)]/ {
+/^[ \t]*AP_DECLARE_HOOK[^(]*[(][^)]*/ {
split($0, args, ",")
symbol = args[2]
sub("^[ \t]+", "", symbol)