summaryrefslogtreecommitdiff
path: root/build/make_nw_export.awk
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2005-10-26 15:18:57 +0000
committerBradley Nicholes <bnicholes@apache.org>2005-10-26 15:18:57 +0000
commit78fd89eba531a44a7be862b948b174ee7711cf3f (patch)
tree04b59fc55639ea255cf85f0110712bf8a28bd4f0 /build/make_nw_export.awk
parent5951279d771224f9f15dccd532fb4b24e46b5dfa (diff)
downloadapr-78fd89eba531a44a7be862b948b174ee7711cf3f.tar.gz
Add a missing symbol to the NetWare export list
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@328657 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/make_nw_export.awk')
-rw-r--r--build/make_nw_export.awk5
1 files changed, 3 insertions, 2 deletions
diff --git a/build/make_nw_export.awk b/build/make_nw_export.awk
index 291ecc0b2..d49fcbaf1 100644
--- a/build/make_nw_export.awk
+++ b/build/make_nw_export.awk
@@ -73,6 +73,7 @@ function add_symbol (sym_name) {
}
-#END {
+END {
+ add_symbol("apr_wait_for_io_or_timeout");
# printf(" %s", line)
-#}
+}