You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by fu...@apache.org on 2014/07/24 15:19:34 UTC

svn commit: r1613114 - in /apr/apr: branches/1.5.x/ branches/1.5.x/build/ branches/1.5.x/test/ branches/1.6.x/ branches/1.6.x/build/ branches/1.6.x/test/ trunk/ trunk/build/ trunk/test/

Author: fuankg
Date: Thu Jul 24 13:19:33 2014
New Revision: 1613114

URL: http://svn.apache.org/r1613114
Log:
Some more NetWare build fixes.

Modified:
    apr/apr/branches/1.5.x/NWGNUmakefile
    apr/apr/branches/1.5.x/build/nw_export.inc
    apr/apr/branches/1.5.x/test/NWGNUaprtest
    apr/apr/branches/1.6.x/NWGNUmakefile
    apr/apr/branches/1.6.x/build/nw_export.inc
    apr/apr/branches/1.6.x/test/NWGNUaprtest
    apr/apr/trunk/NWGNUmakefile
    apr/apr/trunk/build/nw_export.h
    apr/apr/trunk/test/NWGNUaprtest

Modified: apr/apr/branches/1.5.x/NWGNUmakefile
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/NWGNUmakefile?rev=1613114&r1=1613113&r2=1613114&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/NWGNUmakefile (original)
+++ apr/apr/branches/1.5.x/NWGNUmakefile Thu Jul 24 13:19:33 2014
@@ -300,6 +300,7 @@ FILES_lib_objs = \
 	$(OBJDIR)/apr_hash.o \
 	$(OBJDIR)/apr_pools.o \
 	$(OBJDIR)/apr_random.o \
+	$(OBJDIR)/apr_skiplist.o \
 	$(OBJDIR)/apr_snprintf.o \
 	$(OBJDIR)/apr_strings.o \
 	$(OBJDIR)/apr_strnatcmp.o \

Modified: apr/apr/branches/1.5.x/build/nw_export.inc
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/build/nw_export.inc?rev=1613114&r1=1613113&r2=1613114&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/build/nw_export.inc (original)
+++ apr/apr/branches/1.5.x/build/nw_export.inc Thu Jul 24 13:19:33 2014
@@ -35,6 +35,7 @@
 #include "apr_random.h"
 #include "apr_shm.h"
 #include "apr_signal.h"
+#include "apr_skiplist.h"
 #include "apr_strings.h"
 #include "apr_support.h"
 #include "apr_tables.h"

Modified: apr/apr/branches/1.5.x/test/NWGNUaprtest
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/test/NWGNUaprtest?rev=1613114&r1=1613113&r2=1613114&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/test/NWGNUaprtest (original)
+++ apr/apr/branches/1.5.x/test/NWGNUaprtest Thu Jul 24 13:19:33 2014
@@ -176,6 +176,7 @@ FILES_nlm_objs = \
 	$(OBJDIR)/testdup.o \
 	$(OBJDIR)/testdso.o \
 	$(OBJDIR)/testenv.o \
+	$(OBJDIR)/testescape.o \
 	$(OBJDIR)/testfilecopy.o \
 	$(OBJDIR)/testfileinfo.o \
 	$(OBJDIR)/testfile.o \
@@ -199,6 +200,7 @@ FILES_nlm_objs = \
 	$(OBJDIR)/testprocmutex.o \
 	$(OBJDIR)/testrand.o \
 	$(OBJDIR)/testshm.o \
+	$(OBJDIR)/testskiplist.o \
 	$(OBJDIR)/testsleep.o \
 	$(OBJDIR)/testsock.o \
 	$(OBJDIR)/testsockets.o \

Modified: apr/apr/branches/1.6.x/NWGNUmakefile
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.6.x/NWGNUmakefile?rev=1613114&r1=1613113&r2=1613114&view=diff
==============================================================================
--- apr/apr/branches/1.6.x/NWGNUmakefile (original)
+++ apr/apr/branches/1.6.x/NWGNUmakefile Thu Jul 24 13:19:33 2014
@@ -300,6 +300,7 @@ FILES_lib_objs = \
 	$(OBJDIR)/apr_hash.o \
 	$(OBJDIR)/apr_pools.o \
 	$(OBJDIR)/apr_random.o \
+	$(OBJDIR)/apr_skiplist.o \
 	$(OBJDIR)/apr_snprintf.o \
 	$(OBJDIR)/apr_strings.o \
 	$(OBJDIR)/apr_strnatcmp.o \

Modified: apr/apr/branches/1.6.x/build/nw_export.inc
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.6.x/build/nw_export.inc?rev=1613114&r1=1613113&r2=1613114&view=diff
==============================================================================
--- apr/apr/branches/1.6.x/build/nw_export.inc (original)
+++ apr/apr/branches/1.6.x/build/nw_export.inc Thu Jul 24 13:19:33 2014
@@ -35,6 +35,7 @@
 #include "apr_random.h"
 #include "apr_shm.h"
 #include "apr_signal.h"
+#include "apr_skiplist.h"
 #include "apr_strings.h"
 #include "apr_support.h"
 #include "apr_tables.h"

Modified: apr/apr/branches/1.6.x/test/NWGNUaprtest
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.6.x/test/NWGNUaprtest?rev=1613114&r1=1613113&r2=1613114&view=diff
==============================================================================
--- apr/apr/branches/1.6.x/test/NWGNUaprtest (original)
+++ apr/apr/branches/1.6.x/test/NWGNUaprtest Thu Jul 24 13:19:33 2014
@@ -176,6 +176,7 @@ FILES_nlm_objs = \
 	$(OBJDIR)/testdup.o \
 	$(OBJDIR)/testdso.o \
 	$(OBJDIR)/testenv.o \
+	$(OBJDIR)/testescape.o \
 	$(OBJDIR)/testfilecopy.o \
 	$(OBJDIR)/testfileinfo.o \
 	$(OBJDIR)/testfile.o \
@@ -199,6 +200,7 @@ FILES_nlm_objs = \
 	$(OBJDIR)/testprocmutex.o \
 	$(OBJDIR)/testrand.o \
 	$(OBJDIR)/testshm.o \
+	$(OBJDIR)/testskiplist.o \
 	$(OBJDIR)/testsleep.o \
 	$(OBJDIR)/testsock.o \
 	$(OBJDIR)/testsockets.o \

Modified: apr/apr/trunk/NWGNUmakefile
URL: http://svn.apache.org/viewvc/apr/apr/trunk/NWGNUmakefile?rev=1613114&r1=1613113&r2=1613114&view=diff
==============================================================================
--- apr/apr/trunk/NWGNUmakefile (original)
+++ apr/apr/trunk/NWGNUmakefile Thu Jul 24 13:19:33 2014
@@ -324,6 +324,7 @@ FILES_lib_objs = \
 	$(OBJDIR)/apr_reslist.o \
 	$(OBJDIR)/apr_rmm.o \
 	$(OBJDIR)/apr_sha1.o \
+ 	$(OBJDIR)/apr_skiplist.o \
 	$(OBJDIR)/apr_snprintf.o \
 	$(OBJDIR)/apr_strings.o \
 	$(OBJDIR)/apr_strmatch.o \

Modified: apr/apr/trunk/build/nw_export.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/build/nw_export.h?rev=1613114&r1=1613113&r2=1613114&view=diff
==============================================================================
--- apr/apr/trunk/build/nw_export.h (original)
+++ apr/apr/trunk/build/nw_export.h Thu Jul 24 13:19:33 2014
@@ -53,6 +53,7 @@
 #include "apr_sha1.h"
 #include "apr_shm.h"
 #include "apr_signal.h"
+#include "apr_skiplist.h"
 #include "apr_strings.h"
 #include "apr_strmatch.h"
 #include "apr_support.h"

Modified: apr/apr/trunk/test/NWGNUaprtest
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/NWGNUaprtest?rev=1613114&r1=1613113&r2=1613114&view=diff
==============================================================================
--- apr/apr/trunk/test/NWGNUaprtest (original)
+++ apr/apr/trunk/test/NWGNUaprtest Thu Jul 24 13:19:33 2014
@@ -183,6 +183,7 @@ FILES_nlm_objs = \
 	$(OBJDIR)/testdup.o \
 	$(OBJDIR)/testdso.o \
 	$(OBJDIR)/testenv.o \
+	$(OBJDIR)/testescape.o \
 	$(OBJDIR)/testfilecopy.o \
 	$(OBJDIR)/testfileinfo.o \
 	$(OBJDIR)/testfile.o \
@@ -216,6 +217,7 @@ FILES_nlm_objs = \
 	$(OBJDIR)/testrand.o \
 	$(OBJDIR)/testrmm.o \
 	$(OBJDIR)/testshm.o \
+	$(OBJDIR)/testskiplist.o \
 	$(OBJDIR)/testsleep.o \
 	$(OBJDIR)/testsock.o \
 	$(OBJDIR)/testsockets.o \