Option to name include for config.h
-----------------------------------
Key: STDCXX-288
URL: http://issues.apache.org/jira/browse/STDCXX-288
Project: C++ Standard Library
Issue Type: Improvement
Affects Versions: 4.1.3, 4.1.4
Environment: current stdcxx, all environments i think (at least
windows with interix and wgcc)
Reporter: Markus Duft
Priority: Minor
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=<config-header-pathname>. 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 <config.h>
#else
# include <rw/config/rwconfig_std.h>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira