summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorminfrin <minfrin@13f79535-47bb-0310-9956-ffa450edef68>2004-09-19 17:48:01 +0000
committerminfrin <minfrin@13f79535-47bb-0310-9956-ffa450edef68>2004-09-19 17:48:01 +0000
commit0606391b23b59ef01726ec03c8402b7286c4e0eb (patch)
tree9b250dceafb640d8e0bdfff0980eb0140424189b
parentb4815ca76870fc71edc42760344db588defeff58 (diff)
downloadlibapr-0606391b23b59ef01726ec03c8402b7286c4e0eb.tar.gz
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
-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)