Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 70060 invoked from network); 15 Apr 2006 03:11:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Apr 2006 03:11:18 -0000 Received: (qmail 36240 invoked by uid 500); 15 Apr 2006 03:11:18 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 36197 invoked by uid 500); 15 Apr 2006 03:11:17 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 36186 invoked by uid 99); 15 Apr 2006 03:11:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Apr 2006 20:11:17 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [207.155.252.7] (HELO illustrious.cnchost.com) (207.155.252.7) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Apr 2006 20:11:16 -0700 Received: from [192.168.0.21] (c-24-15-193-17.hsd1.il.comcast.net [24.15.193.17]) by illustrious.cnchost.com id XAA19315; Fri, 14 Apr 2006 23:10:50 -0400 (EDT) [ConcentricHost SMTP Relay 1.17] Errors-To: Message-ID: <44406439.2060100@rowe-clan.net> Date: Fri, 14 Apr 2006 20:10:49 -0700 From: "William A. Rowe, Jr." User-Agent: Mozilla Thunderbird 1.0.7-1.1.fc4 (X11/20050929) X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Mark Vandenberg CC: dev@apr.apache.org, davi@haxent.com.br Subject: Re: [patch 01/17] MS VC++ 8.0 options References: <20060415014118.424412000@gmail.com>> <20060415014448.792199000@gmail.com>> In-Reply-To: <20060415014448.792199000@gmail.com>> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Which are you building? I believed I had already committed that one (tripped over it myself.) It's possible this is sitting out in one of my many x686/Win64 trees, however. +1 and I'll commit the patch shortly, if it wasn't already committed. Bill John Mark Vandenberg wrote: > Building testall reports the following warning. > > 1. cl : Command line warning D9035 : option 'GX' has been deprecated ... > cl : Command line warning D9036 : use 'EHsc' instead of 'GX' > > Following those instructions doesnt affect the results. > > Index: test/Makefile.win > =================================================================== > --- test/Makefile.win.orig > +++ test/Makefile.win > @@ -25,7 +25,7 @@ > > CL = cl.exe > > -CFLAGS = /nologo /c /MDd /W3 /Gm /GX /Zi /Od /D _DEBUG /D WIN32 /D APR_DECLARE_STATIC /FD > +CFLAGS = /nologo /c /MDd /W3 /Gm /EHsc /Zi /Od /D _DEBUG /D WIN32 /D APR_DECLARE_STATIC /FD > > .c.obj:: > $(CL) -c $< $(CFLAGS) $(INCLUDES) > > -- > > . >