You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bn...@apache.org on 2005/10/26 17:19:01 UTC

svn commit: r328657 - /apr/apr/trunk/build/make_nw_export.awk

Author: bnicholes
Date: Wed Oct 26 08:18:57 2005
New Revision: 328657

URL: http://svn.apache.org/viewcvs?rev=328657&view=rev
Log:
Add a missing symbol to the NetWare export list

Modified:
    apr/apr/trunk/build/make_nw_export.awk

Modified: apr/apr/trunk/build/make_nw_export.awk
URL: http://svn.apache.org/viewcvs/apr/apr/trunk/build/make_nw_export.awk?rev=328657&r1=328656&r2=328657&view=diff
==============================================================================
--- apr/apr/trunk/build/make_nw_export.awk (original)
+++ apr/apr/trunk/build/make_nw_export.awk Wed Oct 26 08:18:57 2005
@@ -73,6 +73,7 @@
 }
 
 
-#END {
+END {
+   add_symbol("apr_wait_for_io_or_timeout");
 #	printf(" %s", line)
-#}
+}