Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 72518 invoked from network); 15 Mar 2007 15:47:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Mar 2007 15:47:38 -0000 Received: (qmail 54896 invoked by uid 500); 15 Mar 2007 15:47:46 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 54873 invoked by uid 500); 15 Mar 2007 15:47:46 -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 54857 invoked by uid 99); 15 Mar 2007 15:47:46 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Mar 2007 08:47:46 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [204.127.192.84] (HELO rwcrmhc14.comcast.net) (204.127.192.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Mar 2007 08:47:34 -0700 Received: from [127.0.0.1] (c-71-229-200-170.hsd1.co.comcast.net?[71.229.200.170]) by comcast.net (rwcrmhc14) with ESMTP id <20070315154713m1400itiu5e>; Thu, 15 Mar 2007 15:47:13 +0000 Message-ID: <45F96A2F.4030209@roguewave.com> Date: Thu, 15 Mar 2007 09:45:51 -0600 From: Martin Sebor User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.2pre) Gecko/20070111 SeaMonkey/1.1 MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: svn commit: r518316 - /incubator/stdcxx/trunk/GNUmakefile References: <20070314204336.533301A9838@eris.apache.org> <45F95DFE.4070209@roguewave.com> In-Reply-To: <45F95DFE.4070209@roguewave.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Andrew Black wrote: > Greetings Martin. > > I believe this change is causing compile failures on the legacy tests, > as there were still a few stray references to _RWSTD_USE_CONFIG within > the legacy source files. A grep of the source tree indicates that the > following legacy files contain these references: > include/test.h > iostream/27_bench.cpp > localization/22_codecvt.cpp > localization/22_codecvt_iso2022.cpp > localization/22_collate.cpp > localization/22_localedef.cpp > vector/vectorbl.cpp > > I think the critical failure is coming from test.h, but I'm not certain. > I have a number of other things that I need to get done today, so I > don't know if I'll have a chance to get to this, but I thought I'd give > you a heads up on the failure so you can resolve it if I don't have a > chance before you do. Thanks, I should be able to fix it fairly quickly. I had done a global search and replace on the macro but I must have missed the legacy tests. Martin > > --Andrew Black > > sebor@apache.org wrote: >> Author: sebor >> Date: Wed Mar 14 13:43:35 2007 >> New Revision: 518316 >> >> URL: http://svn.apache.org/viewvc?view=rev&rev=518316 >> Log: >> 2007-03-08 Martin Sebor >> >> * GNUmakefile (CPPFLAGS): Removed -D_RWSTD_USE_CONFIG. >> >> Modified: >> incubator/stdcxx/trunk/GNUmakefile >> >> Modified: incubator/stdcxx/trunk/GNUmakefile >> URL: >> http://svn.apache.org/viewvc/incubator/stdcxx/trunk/GNUmakefile?view=diff&rev=518316&r1=518315&r2=518316 >> >> ============================================================================== >> >> --- incubator/stdcxx/trunk/GNUmakefile (original) >> +++ incubator/stdcxx/trunk/GNUmakefile Wed Mar 14 13:43:35 2007 >> @@ -522,9 +522,6 @@ >> # full library filename (including suffix) >> LIBNAME = lib$(LIBBASE)$(LIBSUFFIX) >> >> - # add to enable config.h (alternate config mechanism) >> - CPPFLAGS += -D_RWSTD_USE_CONFIG >> - >> ifeq ($(DEPENDDIR),) >> DEPENDDIR=.depend >> endif >> >> >> > >