summaryrefslogtreecommitdiff
path: root/build/make_nw_export.awk
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2005-10-26 15:18:57 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2005-10-26 15:18:57 +0000
commit81ea5bf8ecc3c97846f4a60155d7a52633ad25fa (patch)
tree04b59fc55639ea255cf85f0110712bf8a28bd4f0 /build/make_nw_export.awk
parenta11ba04f45a89bff6d55f72ec0bf1cb3d9c157d5 (diff)
downloadlibapr-81ea5bf8ecc3c97846f4a60155d7a52633ad25fa.tar.gz
Add a missing symbol to the NetWare export list
git-svn-id: http://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)
-#}
+}