From 0606391b23b59ef01726ec03c8402b7286c4e0eb Mon Sep 17 00:00:00 2001 From: minfrin Date: Sun, 19 Sep 2004 17:48:01 +0000 Subject: The apr/test/Makefile.win is missing a target to build a readchild.exe that test is depending on but is never built. PR: Obtained from: Submitted by: mturk Reviewed by: wrowe git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/APR_0_9_BRANCH@65334 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 4 ++++ test/Makefile.win | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index a4b4bb91d..d7d4d271d 100644 --- a/CHANGES +++ b/CHANGES @@ -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] diff --git a/test/Makefile.win b/test/Makefile.win index 6ef18cdf7..5fc98afa8 100644 --- a/test/Makefile.win +++ b/test/Makefile.win @@ -10,7 +10,8 @@ PROGRAMS = \ sendfile.exe \ server.exe \ proc_child.exe \ - occhild.exe\ + occhild.exe \ + readchild.exe \ testflock.exe \ testsock.exe \ testlockperf.exe \ @@ -46,6 +47,9 @@ testflock.exe: testflock.obj $(LOCAL_LIBS) 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 \ proc_child.obj $(LOCAL_LIBS) $(ALL_LIBS) -- cgit v1.2.1