summaryrefslogtreecommitdiff
path: root/build/make_nw_export.awk
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2002-01-25 23:37:28 +0000
committerBradley Nicholes <bnicholes@apache.org>2002-01-25 23:37:28 +0000
commit52b02475eceb5a23b7766e5978a159d2e4d8289f (patch)
treeba80e3bb5f624095d67c5d7293ec297a7ce2625c /build/make_nw_export.awk
parent56d8ce802596e485e4d811419e1ecf9790310178 (diff)
downloadapr-52b02475eceb5a23b7766e5978a159d2e4d8289f.tar.gz
Added symbol prefixing to the export list
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62834 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/make_nw_export.awk')
-rw-r--r--build/make_nw_export.awk5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/make_nw_export.awk b/build/make_nw_export.awk
index 1e270de2a..1d8481051 100644
--- a/build/make_nw_export.awk
+++ b/build/make_nw_export.awk
@@ -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}
@@ -54,6 +58,7 @@ function add_symbol (sym_name) {
add_symbol(varname);
}
+
#END {
# printf(" %s", line)
#}