From cvs-return-6104-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Sun Sep 19 17:44:20 2004 Return-Path: Delivered-To: apmail-apr-cvs-archive@www.apache.org Received: (qmail 90872 invoked from network); 19 Sep 2004 17:44:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 19 Sep 2004 17:44:20 -0000 Received: (qmail 81401 invoked by uid 500); 19 Sep 2004 17:44:19 -0000 Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 81328 invoked by uid 500); 19 Sep 2004 17:44:19 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 81314 invoked by uid 99); 19 Sep 2004 17:44:18 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 19 Sep 2004 17:44:17 -0000 Message-ID: <20040919174417.90798.qmail@minotaur.apache.org> From: minfrin@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/test Makefile.win X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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 \