Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-3]: src/gnu/lib/libstdc++-v3/arch Pull up revision 1.3 (requested...



details:   https://anonhg.NetBSD.org/src/rev/ee0335e85a5c
branches:  netbsd-3
changeset: 575091:ee0335e85a5c
user:      tron <tron%NetBSD.org@localhost>
date:      Mon Apr 04 18:10:27 2005 +0000

description:
Pull up revision 1.3 (requested by christos in ticket #102):
Enable wide character support for the rest of the archs (i386 is already done).
>From J. T. Conklin.

diffstat:

 gnu/lib/libstdc++-v3/arch/ns32k/c++config.h |  4 ++--
 gnu/lib/libstdc++-v3/arch/ns32k/config.h    |  4 ++--
 gnu/lib/libstdc++-v3/arch/sh3el/config.h    |  4 ++--
 gnu/lib/libstdc++-v3/arch/vax/c++config.h   |  4 ++--
 gnu/lib/libstdc++-v3/arch/vax/config.h      |  4 ++--
 5 files changed, 10 insertions(+), 10 deletions(-)

diffs (105 lines):

diff -r 96aaa1556d66 -r ee0335e85a5c gnu/lib/libstdc++-v3/arch/ns32k/c++config.h
--- a/gnu/lib/libstdc++-v3/arch/ns32k/c++config.h       Mon Apr 04 18:10:17 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/ns32k/c++config.h       Mon Apr 04 18:10:27 2005 +0000
@@ -117,7 +117,7 @@
 /* #undef _GLIBCPP_USE_C99 */
 
 // Define if code specialized for wchar_t should be used.
-/* #undef _GLIBCPP_USE_WCHAR_T */
+#define _GLIBCPP_USE_WCHAR_T 1
 
 // Define if using setrlimit to limit memory usage during 'make check'.
 /* #undef _GLIBCPP_MEM_LIMITS */
@@ -749,7 +749,7 @@
 #define _GLIBCPP_HAVE_WCSCSPN 1
 
 /* Define if you have the wcsftime function.  */
-/* #undef _GLIBCPP_HAVE_WCSFTIME */
+#define _GLIBCPP_HAVE_WCSFTIME 1
 
 /* Define if you have the wcslen function.  */
 #define _GLIBCPP_HAVE_WCSLEN 1
diff -r 96aaa1556d66 -r ee0335e85a5c gnu/lib/libstdc++-v3/arch/ns32k/config.h
--- a/gnu/lib/libstdc++-v3/arch/ns32k/config.h  Mon Apr 04 18:10:17 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/ns32k/config.h  Mon Apr 04 18:10:27 2005 +0000
@@ -17,7 +17,7 @@
 /* #undef _GLIBCPP_USE_C99 */
 
 // Define if code specialized for wchar_t should be used.
-/* #undef _GLIBCPP_USE_WCHAR_T */
+#define _GLIBCPP_USE_WCHAR_T 1
 
 // Define if using setrlimit to limit memory usage during 'make check'.
 /* #undef _GLIBCPP_MEM_LIMITS */
@@ -649,7 +649,7 @@
 #define HAVE_WCSCSPN 1
 
 /* Define if you have the wcsftime function.  */
-/* #undef HAVE_WCSFTIME */
+#define HAVE_WCSFTIME 1
 
 /* Define if you have the wcslen function.  */
 #define HAVE_WCSLEN 1
diff -r 96aaa1556d66 -r ee0335e85a5c gnu/lib/libstdc++-v3/arch/sh3el/config.h
--- a/gnu/lib/libstdc++-v3/arch/sh3el/config.h  Mon Apr 04 18:10:17 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/sh3el/config.h  Mon Apr 04 18:10:27 2005 +0000
@@ -17,7 +17,7 @@
 /* #undef _GLIBCPP_USE_C99 */
 
 // Define if code specialized for wchar_t should be used.
-/* #undef _GLIBCPP_USE_WCHAR_T */
+#define _GLIBCPP_USE_WCHAR_T 1
 
 // Define if using setrlimit to limit memory usage during 'make check'.
 /* #undef _GLIBCPP_MEM_LIMITS */
@@ -649,7 +649,7 @@
 #define HAVE_WCSCSPN 1
 
 /* Define if you have the wcsftime function.  */
-/* #undef HAVE_WCSFTIME */
+#define HAVE_WCSFTIME 1
 
 /* Define if you have the wcslen function.  */
 #define HAVE_WCSLEN 1
diff -r 96aaa1556d66 -r ee0335e85a5c gnu/lib/libstdc++-v3/arch/vax/c++config.h
--- a/gnu/lib/libstdc++-v3/arch/vax/c++config.h Mon Apr 04 18:10:17 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/vax/c++config.h Mon Apr 04 18:10:27 2005 +0000
@@ -117,7 +117,7 @@
 /* #undef _GLIBCPP_USE_C99 */
 
 // Define if code specialized for wchar_t should be used.
-/* #undef _GLIBCPP_USE_WCHAR_T */
+#define _GLIBCPP_USE_WCHAR_T 1
 
 // Define if using setrlimit to limit memory usage during 'make check'.
 /* #undef _GLIBCPP_MEM_LIMITS */
@@ -749,7 +749,7 @@
 #define _GLIBCPP_HAVE_WCSCSPN 1
 
 /* Define if you have the wcsftime function.  */
-/* #undef _GLIBCPP_HAVE_WCSFTIME */
+#define _GLIBCPP_HAVE_WCSFTIME 1
 
 /* Define if you have the wcslen function.  */
 #define _GLIBCPP_HAVE_WCSLEN 1
diff -r 96aaa1556d66 -r ee0335e85a5c gnu/lib/libstdc++-v3/arch/vax/config.h
--- a/gnu/lib/libstdc++-v3/arch/vax/config.h    Mon Apr 04 18:10:17 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/vax/config.h    Mon Apr 04 18:10:27 2005 +0000
@@ -17,7 +17,7 @@
 /* #undef _GLIBCPP_USE_C99 */
 
 // Define if code specialized for wchar_t should be used.
-/* #undef _GLIBCPP_USE_WCHAR_T */
+#define _GLIBCPP_USE_WCHAR_T 1
 
 // Define if using setrlimit to limit memory usage during 'make check'.
 /* #undef _GLIBCPP_MEM_LIMITS */
@@ -649,7 +649,7 @@
 #define HAVE_WCSCSPN 1
 
 /* Define if you have the wcsftime function.  */
-/* #undef HAVE_WCSFTIME */
+#define HAVE_WCSFTIME 1
 
 /* Define if you have the wcslen function.  */
 #define HAVE_WCSLEN 1



Home | Main Index | Thread Index | Old Index