Source-Changes-HG archive

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

[src/trunk]: src/gnu/lib/libstdc++-v3/arch Enable wide character support for ...



details:   https://anonhg.NetBSD.org/src/rev/bbcb9160054c
branches:  trunk
changeset: 579901:bbcb9160054c
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Mar 31 03:17:02 2005 +0000

description:
Enable wide character support for the rest of the archs (i386 is already done).
>From J. T. Conklin.

diffstat:

 gnu/lib/libstdc++-v3/arch/alpha/c++config.h   |  4 ++--
 gnu/lib/libstdc++-v3/arch/alpha/config.h      |  4 ++--
 gnu/lib/libstdc++-v3/arch/arm/c++config.h     |  4 ++--
 gnu/lib/libstdc++-v3/arch/arm/config.h        |  4 ++--
 gnu/lib/libstdc++-v3/arch/armeb/c++config.h   |  4 ++--
 gnu/lib/libstdc++-v3/arch/armeb/config.h      |  4 ++--
 gnu/lib/libstdc++-v3/arch/hppa/c++config.h    |  4 ++--
 gnu/lib/libstdc++-v3/arch/hppa/config.h       |  4 ++--
 gnu/lib/libstdc++-v3/arch/m68000/c++config.h  |  4 ++--
 gnu/lib/libstdc++-v3/arch/m68000/config.h     |  4 ++--
 gnu/lib/libstdc++-v3/arch/m68k/c++config.h    |  4 ++--
 gnu/lib/libstdc++-v3/arch/m68k/config.h       |  4 ++--
 gnu/lib/libstdc++-v3/arch/mipseb/c++config.h  |  4 ++--
 gnu/lib/libstdc++-v3/arch/mipseb/config.h     |  4 ++--
 gnu/lib/libstdc++-v3/arch/mipsel/c++config.h  |  4 ++--
 gnu/lib/libstdc++-v3/arch/mipsel/config.h     |  4 ++--
 gnu/lib/libstdc++-v3/arch/ns32k/c++config.h   |  4 ++--
 gnu/lib/libstdc++-v3/arch/ns32k/config.h      |  4 ++--
 gnu/lib/libstdc++-v3/arch/powerpc/c++config.h |  4 ++--
 gnu/lib/libstdc++-v3/arch/powerpc/config.h    |  4 ++--
 gnu/lib/libstdc++-v3/arch/sh3eb/c++config.h   |  4 ++--
 gnu/lib/libstdc++-v3/arch/sh3eb/config.h      |  4 ++--
 gnu/lib/libstdc++-v3/arch/sh3el/c++config.h   |  4 ++--
 gnu/lib/libstdc++-v3/arch/sh3el/config.h      |  4 ++--
 gnu/lib/libstdc++-v3/arch/sh5el/c++config.h   |  4 ++--
 gnu/lib/libstdc++-v3/arch/sh5el/config.h      |  4 ++--
 gnu/lib/libstdc++-v3/arch/sparc/c++config.h   |  4 ++--
 gnu/lib/libstdc++-v3/arch/sparc/config.h      |  4 ++--
 gnu/lib/libstdc++-v3/arch/sparc64/c++config.h |  4 ++--
 gnu/lib/libstdc++-v3/arch/sparc64/config.h    |  4 ++--
 gnu/lib/libstdc++-v3/arch/vax/c++config.h     |  4 ++--
 gnu/lib/libstdc++-v3/arch/vax/config.h        |  4 ++--
 gnu/lib/libstdc++-v3/arch/x86_64/c++config.h  |  4 ++--
 gnu/lib/libstdc++-v3/arch/x86_64/config.h     |  4 ++--
 34 files changed, 68 insertions(+), 68 deletions(-)

diffs (truncated from 714 to 300 lines):

diff -r 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/alpha/c++config.h
--- a/gnu/lib/libstdc++-v3/arch/alpha/c++config.h       Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/alpha/c++config.h       Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/alpha/config.h
--- a/gnu/lib/libstdc++-v3/arch/alpha/config.h  Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/alpha/config.h  Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/arm/c++config.h
--- a/gnu/lib/libstdc++-v3/arch/arm/c++config.h Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/arm/c++config.h Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/arm/config.h
--- a/gnu/lib/libstdc++-v3/arch/arm/config.h    Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/arm/config.h    Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/armeb/c++config.h
--- a/gnu/lib/libstdc++-v3/arch/armeb/c++config.h       Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/armeb/c++config.h       Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/armeb/config.h
--- a/gnu/lib/libstdc++-v3/arch/armeb/config.h  Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/armeb/config.h  Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/hppa/c++config.h
--- a/gnu/lib/libstdc++-v3/arch/hppa/c++config.h        Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/hppa/c++config.h        Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/hppa/config.h
--- a/gnu/lib/libstdc++-v3/arch/hppa/config.h   Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/hppa/config.h   Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/m68000/c++config.h
--- a/gnu/lib/libstdc++-v3/arch/m68000/c++config.h      Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/m68000/c++config.h      Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/m68000/config.h
--- a/gnu/lib/libstdc++-v3/arch/m68000/config.h Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/m68000/config.h Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/m68k/c++config.h
--- a/gnu/lib/libstdc++-v3/arch/m68k/c++config.h        Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/m68k/c++config.h        Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/m68k/config.h
--- a/gnu/lib/libstdc++-v3/arch/m68k/config.h   Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/m68k/config.h   Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/mipseb/c++config.h
--- a/gnu/lib/libstdc++-v3/arch/mipseb/c++config.h      Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/mipseb/c++config.h      Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/mipseb/config.h
--- a/gnu/lib/libstdc++-v3/arch/mipseb/config.h Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/mipseb/config.h Thu Mar 31 03:17:02 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 1ca956cad02e -r bbcb9160054c gnu/lib/libstdc++-v3/arch/mipsel/c++config.h
--- a/gnu/lib/libstdc++-v3/arch/mipsel/c++config.h      Thu Mar 31 03:07:38 2005 +0000
+++ b/gnu/lib/libstdc++-v3/arch/mipsel/c++config.h      Thu Mar 31 03:17:02 2005 +0000
@@ -117,7 +117,7 @@
 /* #undef _GLIBCPP_USE_C99 */
 



Home | Main Index | Thread Index | Old Index