summaryrefslogtreecommitdiff
path: root/build/make_nw_export.awk
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-01-25 23:37:28 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-01-25 23:37:28 +0000
commite3354e8bb4e58ec5df682bba1235f067cdf3e09a (patch)
treeba80e3bb5f624095d67c5d7293ec297a7ce2625c /build/make_nw_export.awk
parenta420f5b002f67ebd3f7de49d3849c6c45674f5cc (diff)
downloadlibapr-e3354e8bb4e58ec5df682bba1235f067cdf3e09a.tar.gz
Added symbol prefixing to the export list
git-svn-id: http://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)
#}