diff options
author | kan <kan@FreeBSD.org> | 2003-04-29 18:10:45 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2003-04-29 18:10:45 +0000 |
commit | 6f4ed18bfc2d5d1b0f54a4c542a9a5d136031a12 (patch) | |
tree | 5b1c798dd594607e1d846c8f391c5199c7f1c287 /gnu | |
parent | ffeacbdf54b4470d72c482b3118d47b1f4c6e30c (diff) | |
download | FreeBSD-src-6f4ed18bfc2d5d1b0f54a4c542a9a5d136031a12.zip FreeBSD-src-6f4ed18bfc2d5d1b0f54a4c542a9a5d136031a12.tar.gz |
Enable wchar_t support in libstdc++.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libstdc++/c++config.h | 2 | ||||
-rw-r--r-- | gnu/lib/libstdc++/config.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libstdc++/c++config.h b/gnu/lib/libstdc++/c++config.h index 58bcb24..b630940 100644 --- a/gnu/lib/libstdc++/c++config.h +++ b/gnu/lib/libstdc++/c++config.h @@ -104,7 +104,7 @@ libstdc++-v3/include/bits/c++config before full recompilation of the library. #define _GLIBCPP_USE_C99 1 // 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 */ diff --git a/gnu/lib/libstdc++/config.h b/gnu/lib/libstdc++/config.h index 7cf13d1..f8a228a 100644 --- a/gnu/lib/libstdc++/config.h +++ b/gnu/lib/libstdc++/config.h @@ -16,7 +16,7 @@ #define _GLIBCPP_USE_C99 1 // 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 */ |