make_nw_export.awk revision cd1f290b74cc0793e9ddc1b19216390fc08b5f51
# 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}
/ap_strchr/{next}
/ap_strchr_c/{next}
/ap_strstr/{next}
/ap_strstr_c/{next}
/ap_strrchr/{next}
/ap_strrchr_c/{next}
found++
}
# for (i = 0; i < count; i++) {
# line = line "\t"
# }
line = ""
}
}
sub("[ \t]*AP([RU]|_CORE)?_DECLARE[^(]*[(][^)]*[)][ \t]*", "")
sub("[(].*", "")
sub("([^ ]* (^([ \t]*[(])))+", "")
add_symbol($0)
next
}
next
}
sub("[ \t]*APR_POOL_DECLARE_ACCESSOR[^(]*[(]", "", $0)
sub("[)].*$", "", $0)
next
}
/^[ \t]*AP[RU]?_DECLARE_DATA .*;$/ {
}
#END {
# printf(" %s", line)
#}