Return-Path: Delivered-To: apmail-stdcxx-issues-archive@locus.apache.org Received: (qmail 73802 invoked from network); 14 May 2008 19:01:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 May 2008 19:01:19 -0000 Received: (qmail 40294 invoked by uid 500); 14 May 2008 19:01:21 -0000 Delivered-To: apmail-stdcxx-issues-archive@stdcxx.apache.org Received: (qmail 40270 invoked by uid 500); 14 May 2008 19:01:21 -0000 Mailing-List: contact issues-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list issues@stdcxx.apache.org Received: (qmail 40259 invoked by uid 99); 14 May 2008 19:01:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 May 2008 12:01:21 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 May 2008 19:00:44 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 34243234C119 for ; Wed, 14 May 2008 12:00:59 -0700 (PDT) Message-ID: <108360258.1210791659212.JavaMail.jira@brutus> Date: Wed, 14 May 2008 12:00:59 -0700 (PDT) From: "Martin Sebor (JIRA)" To: issues@stdcxx.apache.org Subject: [jira] Updated: (STDCXX-288) Option to name include for config.h MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/STDCXX-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Sebor updated STDCXX-288: -------------------------------- Severity: Usability Affects Version/s: 4.2.0 4.2.1 Fix Version/s: 4.3 Remaining Estimate: 2h Original Estimate: 2h Scheduled for 4.3 (along with the related STDCXX-336). > Option to name include for config.h > ----------------------------------- > > Key: STDCXX-288 > URL: https://issues.apache.org/jira/browse/STDCXX-288 > Project: C++ Standard Library > Issue Type: Improvement > Components: Configuration > Affects Versions: 4.1.3, 4.1.4, 4.2.0, 4.2.1 > Environment: current stdcxx, all environments i think (at least windows with interix and wgcc) > Reporter: Markus Duft > Priority: Minor > Fix For: 4.3 > > Original Estimate: 2h > Remaining Estimate: 2h > > see mail "Re: problem with config.h" from Martin Sebor: > Yes, the name is far from ideal. I've been thinking about making it configurable, perhaps by replacing the _RWSTD_USE_CONFIG macro with _RWSTD_CONFIG=. The patch below has all the source changes necessary to make it work (the rest of the changes need to go in the makefiles and VisualStudio scripts). > I suggest you create an enhancement request in Jira for this to help us remember to get it done. > Martin > Index: /build/sebor/stdcxx/include/rw/_config.h > =================================================================== > --- /build/sebor/stdcxx/include/rw/_config.h (revision 436919) > +++ /build/sebor/stdcxx/include/rw/_config.h (working copy) > @@ -31,7 +31,9 @@ > #ifndef _RWSTD_RW_CONFIG_H_INCLUDED > #define _RWSTD_RW_CONFIG_H_INCLUDED > -#ifdef _RWSTD_USE_CONFIG > +#ifdef _RWSTD_CONFIG > +# include _RWSTD_CONFIG > +#elif defined (_RWSTD_USE_CONFIG) > # include > #else > # include -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.