Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 39339 invoked from network); 11 Jul 2007 22:57:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Jul 2007 22:57:20 -0000 Received: (qmail 35758 invoked by uid 500); 11 Jul 2007 22:57:22 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 35742 invoked by uid 500); 11 Jul 2007 22:57:22 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 35731 invoked by uid 99); 11 Jul 2007 22:57:22 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jul 2007 15:57:22 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [208.30.140.160] (HELO moroha.quovadx.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jul 2007 15:57:18 -0700 Received: from qxvcexch01.ad.quovadx.com ([192.168.170.59]) by moroha.quovadx.com (8.13.6/8.13.6) with ESMTP id l6BMuuwa022124 for ; Wed, 11 Jul 2007 22:56:56 GMT Received: from [10.70.3.113] ([10.70.3.113]) by qxvcexch01.ad.quovadx.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 11 Jul 2007 16:56:10 -0600 Message-ID: <46956041.7010206@roguewave.com> Date: Wed, 11 Jul 2007 16:57:05 -0600 From: Martin Sebor Organization: Rogue Wave Software User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.2) Gecko/20070221 SeaMonkey/1.1.1 MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: svn commit: r555106 - /incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp References: <20070710225120.3CF4C1A981A@eris.apache.org> <46953E01.1020902@roguewave.com> In-Reply-To: <46953E01.1020902@roguewave.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 11 Jul 2007 22:56:10.0391 (UTC) FILETIME=[AC600A70:01C7C40E] X-Virus-Checked: Checked by ClamAV on apache.org Andrew Black wrote: > Greetings Martin > > I'm not certain, but I suspect this change has lead to a breakage with > aCC 3.73 and aCC 3.76. In particular, I see the following failure while > building the library (remarks trimmed out) >> aCC -c -I$(TOPDIR)/include/ansi -I/usr/include -I$(TOPDIR)/include -I$(BUILDDIR)/include -Aa +nostl +W2193 +W2261 +W2340 +W2401 +W2487 +W4263 +W4264 +W4297 +O2 +DD64 +w +W392 +W655 +W684 +W818 +W819 +W849 +Z $(TOPDIR)/src/time_put.cpp >> "$(TOPDIR)/src/time_put.cpp", line 2811: error #2167: argument of type "unsigned long" is incompatible with parameter of type "const wchar_t *" >> bufsize, >> ^ > > The failure is a fairly new (less than a week old), and I believe this > to be the most likely culprit. Thanks for pointing it out! Yes, this is my bad. It's a fallout from http://svn.apache.org/viewvc?view=rev&revision=554281. I believe I fixed it along with another problems caused by yours truly with the following two changes: http://svn.apache.org/viewvc?view=rev&rev=555408 http://svn.apache.org/viewvc?view=rev&rev=555427 Martin