summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES4
-rw-r--r--test/Makefile.win6
2 files changed, 9 insertions, 1 deletions
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)