1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-25 07:01:39 +03:00
Files
apache/build/make_nw_export.awk
Bradley Nicholes 4b9c55041e Fix export of variables that have "extern" before their AP_DECLARE_DATA.
This includes ap_subreq_core_filter_handle which mod_autoindex.c now needs.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94551 13f79535-47bb-0310-9956-ffa450edef68
2002-04-08 22:08:34 +00:00

56 lines
1.0 KiB
Awk

# Based on apr's make_export.awk, which is
# based on Ryan Bloom's make_export.pl
BEGIN {
printf(" (APACHE2)\n")
}
# List of functions that we don't support, yet??
#/ap_some_name/{next}
function add_symbol (sym_name) {
if (count) {
found++
}
gsub (/ /, "", sym_name)
line = line sym_name ",\n"
if (count == 0) {
printf(" %s", line)
line = ""
}
}
/^[ \t]*AP([RU]|_CORE)?_DECLARE[^(]*[(][^)]*[)]([^ ]* )*[^(]+[(]/ {
sub("[ \t]*AP([RU]|_CORE)?_DECLARE[^(]*[(][^)]*[)][ \t]*", "")
sub("[(].*", "")
sub("([^ ]* (^([ \t]*[(])))+", "")
add_symbol($0)
next
}
/^[ \t]*AP_DECLARE_HOOK[^(]*[(][^)]*/ {
split($0, args, ",")
symbol = args[2]
sub("^[ \t]+", "", symbol)
sub("[ \t]+$", "", symbol)
add_symbol("ap_hook_" symbol)
add_symbol("ap_hook_get_" symbol)
add_symbol("ap_run_" symbol)
next
}
/^[ \t]*(extern[ \t]+)?AP[RU]?_DECLARE_DATA .*;$/ {
varname = $NF;
gsub( /[*;]/, "", varname);
gsub( /\[.*\]/, "", varname);
add_symbol(varname);
}
#END {
# printf(" %s", line)
#}