Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 35353 invoked from network); 8 Jul 2004 21:46:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 8 Jul 2004 21:46:49 -0000 Received: (qmail 68643 invoked by uid 500); 8 Jul 2004 21:46:44 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 68502 invoked by uid 500); 8 Jul 2004 21:46:42 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 68424 invoked by uid 99); 8 Jul 2004 21:46:41 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Date: Thu, 8 Jul 2004 17:46:40 -0400 From: Craig Rodrigues To: Ed Holyat Cc: dev@apr.apache.org Subject: Re: testall.c is in the attic? Message-ID: <20040708214640.GA39629@crodrigues.org> References: <92322E4B3209D511A19100508B55847802EC0E53@exchange.olf.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <92322E4B3209D511A19100508B55847802EC0E53@exchange.olf.com> User-Agent: Mutt/1.4.1i X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Fri, Jul 02, 2004 at 11:29:43AM -0400, Ed Holyat wrote: > It really doesn't matter, it is still looking for testall.obj. the dsw uses > "nmake /f Makefile.win all" Hi, You are definitely right. The Makefile.win is definitely broken. Looks like nobody has been compilingn the APR tests with VC++ for a while. Can you try the following patch? Index: Makefile.win =================================================================== RCS file: /home/cvspublic/apr/test/Makefile.win,v retrieving revision 1.21 diff -u -r1.21 Makefile.win --- Makefile.win 9 Apr 2004 02:03:12 -0000 1.21 +++ Makefile.win 8 Jul 2004 21:40:01 -0000 @@ -78,7 +78,7 @@ testmutexscope.exe: testmutexscope.obj $(LOCAL_LIBS) $(LINK) testmutexscope.obj $(LOCAL_LIBS) $(ALL_LIBS) -TESTS = testall.obj testtime.obj teststr.obj testvsn.obj testipsub.obj \ +TESTS = abts.obj testtime.obj teststr.obj testvsn.obj testipsub.obj \ testmmap.obj testud.obj testtable.obj testsleep.obj testpools.obj \ testfmt.obj testfile.obj testdir.obj testfileinfo.obj testrand.obj \ testdso.obj testoc.obj testdup.obj testsockets.obj testproc.obj \ @@ -87,10 +87,10 @@ testenv.obj testprocmutex.obj testrand2.obj testfnmatch.obj \ testatomic.obj testflock.obj testshm.obj testsock.obj \ testglobalmutex.obj teststrnatcmp.obj testfilecopy.obj \ - testtemp.obj testlfs.obj + testtemp.obj testlfs.obj testutil.obj -testall.exe: $(TESTS) CuTest.obj $(LOCAL_LIBS) - $(LINK) /debug /subsystem:console /machine:I386 $(TESTS) CuTest.obj \ +testall.exe: $(TESTS) $(LOCAL_LIBS) + $(LINK) /debug /subsystem:console /machine:I386 /out:$@ $(TESTS) \ $(LOCAL_LIBS) $(ALL_LIBS) Index: teststr.c =================================================================== RCS file: /home/cvspublic/apr/test/teststr.c,v retrieving revision 1.25 diff -u -r1.25 teststr.c --- teststr.c 30 Jun 2004 11:10:24 -0000 1.25 +++ teststr.c 8 Jul 2004 21:29:29 -0000 @@ -20,6 +20,10 @@ #include #include +#if APR_HAVE_LIMITS_H +#include +#endif + #include "apr_general.h" #include "apr_strings.h" #include "apr_errno.h" -- Craig Rodrigues http://crodrigues.org rodrigc@crodrigues.org