minfrin 2004/09/19 10:48:01
Modified: . Tag: APR_0_9_BRANCH CHANGES
test Tag: APR_0_9_BRANCH Makefile.win
Log:
The apr/test/Makefile.win is missing a target to build a readchild.exe
that test is depending on but is never built.
Submitted by: mturk
Reviewed by: wrowe
Revision Changes Path
No revision
No revision
1.426.2.32 +4 -0 apr/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr/CHANGES,v
retrieving revision 1.426.2.31
retrieving revision 1.426.2.32
diff -u -r1.426.2.31 -r1.426.2.32
--- CHANGES 1 Sep 2004 09:53:50 -0000 1.426.2.31
+++ CHANGES 19 Sep 2004 17:48:01 -0000 1.426.2.32
@@ -1,5 +1,9 @@
Changes with APR 0.9.5
+ *) The apr/test/Makefile.win is missing a target to build a
+ readchild.exe that test is depending on but is never built.
+ [Mladen Turk]
+
*) Fix build issues in paths containing symlinks. PR 8867.
[Joe Orton]
No revision
No revision
1.9.2.1 +5 -1 apr/test/Makefile.win
Index: Makefile.win
===================================================================
RCS file: /home/cvs/apr/test/Makefile.win,v
retrieving revision 1.9
retrieving revision 1.9.2.1
diff -u -r1.9 -r1.9.2.1
--- Makefile.win 4 Jul 2003 01:54:07 -0000 1.9
+++ Makefile.win 19 Sep 2004 17:48:01 -0000 1.9.2.1
@@ -10,7 +10,8 @@
sendfile.exe \
server.exe \
proc_child.exe \
- occhild.exe\
+ occhild.exe \
+ readchild.exe \
testflock.exe \
testsock.exe \
testlockperf.exe \
@@ -45,6 +46,9 @@
occhild.exe: occhild.obj $(LOCAL_LIBS)
$(LINK) occhild.obj $(LOCAL_LIBS) $(ALL_LIBS)
+
+readchild.exe: readchild.obj $(LOCAL_LIBS)
+ $(LINK) readchild.obj $(LOCAL_LIBS) $(ALL_LIBS)
proc_child.exe: proc_child.obj $(LOCAL_LIBS)
$(LINK) /debug /subsystem:console /machine:I386 \