minfrin 2004/09/19 10:44:17
Modified: . CHANGES
test 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
1.490 +4 -0 apr/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr/CHANGES,v
retrieving revision 1.489
retrieving revision 1.490
diff -u -r1.489 -r1.490
--- CHANGES 24 Aug 2004 20:01:58 -0000 1.489
+++ CHANGES 19 Sep 2004 17:44:17 -0000 1.490
@@ -1,5 +1,9 @@
Changes for APR 1.1 [Deferring these features when 1.0 is rolled out.]
+ *) 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]
+
*) Improve apr_file_gets() performance on buffered files. [Justin
Erenkrantz]
*) Win32: Fix bug in apr_socket_sendfile that interferred with
1.23 +5 -1 apr/test/Makefile.win
Index: Makefile.win
===================================================================
RCS file: /home/cvs/apr/test/Makefile.win,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- Makefile.win 26 Jul 2004 15:21:59 -0000 1.22
+++ Makefile.win 19 Sep 2004 17:44:17 -0000 1.23
@@ -6,7 +6,8 @@
sendfile.exe \
proc_child.exe \
tryread.exe \
- occhild.exe\
+ occhild.exe \
+ readchild.exe \
sockchild.exe \
testlockperf.exe \
testshmproducer.exe \
@@ -39,6 +40,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 \