make_nw_export.awk revision 56501c76b6e8bc7c0c47f41669ec98990f03c1d9
# Based on apr's make_export.awk, which is
# based on Ryan Bloom's make_export.pl
# List of functions that we don't support, yet??
/ap_get_module_config/{next}
/ap_gname2id/{next}
/ap_mpm_pod_check/{next}
/ap_mpm_pod_close/{next}
/ap_mpm_pod_killpg/{next}
/ap_mpm_pod_open/{next}
/ap_mpm_pod_signal/{next}
/ap_os_create_privileged_process/{next}
/ap_send_mmap/{next}
/ap_set_module_config/{next}
/ap_uname2id/{next}
found++
}
# for (i = 0; i < count; i++) {
# line = line "\t"
# }
line = ""
}
}
sub("[ \t]*AP[RU]?_DECLARE[^(]*[(][^)]*[)][ \t]*", "")
sub("[(].*", "")
sub("([^ ]* (^([ \t]*[(])))+", "")
add_symbol($0)
next
}
next
}
/^[ \t]*AP[RU]?_DECLARE_DATA .*;$/ {
}
#END {
# printf(" %s", line)
#}