You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Mladen Turk <mt...@apache.org> on 2004/08/27 11:14:34 UTC

[PATCH] test/Makefile.win -- add readchild.exe to build

readchild.exe is never build on win so test_pipe keeps hanging.

cvs diff -u Makefile.win (in directory 
C:\WRKTOOLS\WINCVS\DATA\apache\apr\test\)
Index: Makefile.win
===================================================================
RCS file: /home/cvspublic/apr/test/Makefile.win,v
retrieving revision 1.22
diff -u -r1.22 Makefile.win
--- Makefile.win	26 Jul 2004 15:21:59 -0000	1.22
+++ Makefile.win	26 Aug 2004 16:34:40 -0000
@@ -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 \



Regards,
MT.