bnicholes 02/01/25 15:37:28 Modified: build make_nw_export.awk Log: Added symbol prefixing to the export list Revision Changes Path 1.8 +5 -0 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.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- make_nw_export.awk 8 Jan 2002 21:39:42 -0000 1.7 +++ make_nw_export.awk 25 Jan 2002 23:37:28 -0000 1.8 @@ -1,6 +1,10 @@ # Based on apr's make_export.awk, which is # based on Ryan Bloom's make_export.pl +BEGIN { + printf(" (APRLIB)\n") +} + # List of functions that we don't support, yet?? #/apr_##name##_set_inherit/{next} #/apr_##name##_unset_inherit/{next} @@ -53,6 +57,7 @@ gsub( /\[.*\]/, "", varname); add_symbol(varname); } + #END { # printf(" %s", line)