-
Notifications
You must be signed in to change notification settings - Fork 11
/
ChangeLog
16623 lines (13367 loc) · 553 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2007-12-13 William Rowe <[email protected]>
* README: Struck incubating disclaimer, stdcxx is a top level project
2007-10-16 Martin Sebor <[email protected]>
* ChangeLog: Generated a single per-project ChangeLog.
* examples/ChangeLog: Deleted. Superseded by the above.
* include/ChangeLog: Likewise.
* src/ChangeLog: Likewise.
* util/ChangeLog: Likewise.
* tests/ChangeLog: Likewise.
2007-10-16 Martin Sebor <[email protected]>
Merged a partial fix for STDCXX-600 from branches/4.2.0.
* include/exception (exception): Partially reverted fix for STDCXX-262
committed in rev 583667 due to the binary incompatibility of the change
both with stdcxx 4.1.x as well as with gcc's libsupc++.
2007-10-16 Martin Sebor <[email protected]>
Merged a (mostly) binary compatible fix for STDCXX-509 from
branches/4.2.0:
* inlcude/limits [_RWSTD_NO_OBJECT_MANGLING] (__rw_flt_denorm_min,
__rw_flt_infinity, __rw_flt_qNaN, __rw_flt_sNaN, __rw_dbl_denorm_min,
__rw_dbl_infinity, __rw_dbl_qNaN, __rw_dbl_sNaN, __rw_ldbl_denorm_min,
__rw_ldbl_infinity, __rw_ldbl_qNaN, __rw_ldbl_sNaN): Declared with C++
linkage when the config macro is #defined for binary compatibility with
prior 4.x releases.
* src/limits_bits.cpp: Same as above for definitions of constants.
* src/num_get.cpp [_RWSTD_NO_OBJECT_MANGLING] (__rw_flt_infinity,
__rw_dbl_infinity, __rw_ldbl_infinity): Same.
2007-10-15 Andrew Black <[email protected]>
STDCXX-109
* etc/config/makefile.rules ($(CATFILE)): Make failure to execute
the gencat utility non-fatal.
2007-10-16 Travis Vitek <[email protected]>
STDCXX-596
* 0.printf.cpp (_rw_fmtarray): Check pointer bounds before
examining the contents to avoid uninitialized memory read.
2007-10-15 Martin Sebor <[email protected]>
* src/ChangeLog: Updated.
* include/ChangeLog: Generated.
* examples/ChangeLog: Ditto.
* tests/ChangeLog: Ditto.
* util/ChangeLog: Ditto.
2007-10-15 Martin Sebor <[email protected]>
* README: Removed the "(pre-release)" bit from the version string
and added the set of platforms on which 4.2.0 has been tested on.
2007-10-15 Martin Sebor <[email protected]>
* _config.h: Corrected a typo in a comment and updated the year
of copyright.
2007-10-15 Martin Sebor <[email protected]>
* 21.string.io.stdcxx-206.cpp: Added a license header.
2007-10-15 Martin Sebor <[email protected]>
* NO_OBJECT_MANGLING.cpp: New config test to determine whether
namespace-scope objects have their types mangled into their
names (as done by MSVC) or not (other compilers).
* object_mangling_imp.cpp: Helper file to go with the above.
2007-10-15 Farid Zaripov <[email protected]>
* 21.string.io.stdcxx-206.cpp: Perform testing with zero
and non-zero padding. Perform checking according to
_RWSTD_NO_EXT_KEEP_WIDTH_ON_FAILUDE macro definition.
2007-10-15 Farid Zaripov <[email protected]>
STDCXX-206
* _ioinsert.cc (__rw_insert): Corrected #ifndef to #ifdef.
2007-10-14 Martin Sebor <[email protected]>
* 26.valarray.sub.stdcxx-224.cpp: Added regression test for STDCXX-224.
2007-10-14 Marc Betz <[email protected]>
* 1-5.html: Editorial improvements not related to but made
in the process of resolving STDCXX-574.
2007-10-14 Martin Sebor <[email protected]>
STDCXX-278
* valarray.html: Updated example source code to reflect rev 584618.
2007-10-14 Martin Sebor <[email protected]>
STDCXX-278
* valarray.cpp (<valarray.h>): Removed a confusing #include directive
and added the definition of a generic operator<<() for valarray copied
from the said header.
(main): Replaced endl with '\n' for efficiency.
2007-10-14 Martin Sebor <[email protected]>
STDCXX-407
* frames-contents-all.html: Removed section 1.2.3 - Relationship
to the Essential Tools Module.
* 1-1.html: Replaced C++ Standard Library Module with Apache C++
Standard Library.
2007-10-14 Martin Sebor <[email protected]>
STDCXX-407
* tindex.html: Replaced "Rogue Wave" with Apache.
* frames-contents-all.html: Same.
2007-10-14 Marc Betz <[email protected]>
STDCXX-407
* copyright.html: Deleted.
* contact.html: Same.
2007-10-14 Marc Betz <[email protected]>
STDCXX-407
* copyright.html: Deleted.
* contact.html: Same.
* 1-6.html: Same.
* 1-7.html: Same.
2007-10-14 Marc Betz <[email protected]>
STDCXX-407
* 40-5.html: Replaced "C++ Standard Library Module" with "Apache C++
Standard Library."
* 1-1.html: Same.
* 33-3.html: Same.
* 25-5.html: Same.
* 39-1.html: Same.
* 1-5.html: Same. Also made the width of the "next" button the same
as that of the "previous" button.
* 32-5.html: Same.
* 18-3.html: Same. Also made the width of the "next" button the same
as that of the "previous" button.
* 24-4.html: Same.
* 27-3.html: Same.
* 41-2.html: Same.
* 16-3.html: Same.
* 22-7.html: Same.
* 36-3.html: Same.
* noframes.html: Same.
* 30-2.html: Same.
* 22-4.html: Same.
* 42-1.html: Same.
* 17-2.html: Same.
* II.html: Same. Also made the width of the "next" button the same
as that of the "previous" button.
* 1-3.html: Same.
* 27-4.html: Same.
* 24-2.html: Same.
* 16-1.html: Same.
* 28-3.html: Same.
* tindex.html: Same. Removed references to Rogue Wave SourcePro C++
products and services.
* booktoc.html: Same.
* 1.html: Same.
* 1-2.html: Same.
* 1-4.html: Same.
2007-10-14 Martin Sebor <[email protected]>
* 1-1.html: Corrected a link to the Rogue Wave site.
* 1-4.html: Corrected paths pointing to documentation.
2007-10-14 Marc Betz <[email protected]>
STDCXX-407
* locale.html: Replaced "C++ Standard Library Module" with "Apache C++
Standard Library." Also made the width of the "next" button the same
as that of the "previous" button.
* noframes.html: Same.
* localedefutility.html: Same.
2007-10-11 Martin Sebor <[email protected]>
STDCXX-509
* limits_bits.cpp [_RWSTD_NO_INFINITY] (__rw_flt_denorm_min,
__rw_flt_infinity, __rw_flt_qNaN, __rw_flt_sNaN, __rw_dbl_denorm_min,
__rw_dbl_infinity, __rw_dbl_qNaN, __rw_dbl_sNaN, __rw_ldbl_denorm_min,
__rw_ldbl_infinity, __rw_ldbl_qNaN, __rw_ldbl_sNaN): Declared constants
with "C" linkage corresponding to rev 564059.
2007-10-11 Martin Sebor <[email protected]>
STDCXX-590
* _cerrno.h [__linux__] (errno): Unconditionally #defined to
__errno_location() which is always declared/defined by GNU
libc, going as far back as Red Hat Linux 8 (libc 2.2.93).
2007-10-11 Martin Sebor <[email protected]>
STDCXX-589
* file.cpp [!_RWSTD_NO_PURE_C_HEADERS] (fileno): Relaxed a guard
around a declaration.
2007-10-11 Martin Sebor <[email protected]>
STDCXX-588
* _config-eccp.h (_RWSTD_NO_DEPRECATED_C_HEADERS,
_RWSTD_NO_PURE_C_HEADERS): #undef'ined config macros for EDG eccp.
2007-10-11 Martin Sebor <[email protected]>
STDCXX-586
* WCHAR_T.cpp [_RWSTD_NO_NATIVE_WCHAR_T] (<wchar.h>): Guarded #include
directive to prevent failures when wchar_t is already known to be a
fundamental type.
2007-10-04 Travis Vitek <[email protected]>
STDCXX-580
* strstream.cpp (main): Unfreeze streambuf so destructor
will deallocate memory.
2007-10-11 Farid Zaripov <[email protected]>
* configure.wsf (configure): Removed IncludeDir command
line option.
* projects.js (CreateProjectsDefs): Removed /IncludeDir
option from command line of the configure.wsf script.
2007-09-26 Martin Sebor <[email protected]>
STDCXX-262
* exception (~exception): Declared after what() to prevent gcc 4
on Darwin from generating a vtable for the class in exception.o.
gcc 3.4.6 on FreeBSD 6.2 has no problem either way.
(~bad_exception): Declared before what() to achieve the same
effect as above.
* new (~bad_alloc): Declared before what() for the same reason.
2007-10-10 Martin Sebor <[email protected]>
* 21.string.io.stdcxx-206.cpp: Regression test for STDCXX-206.
2007-10-10 Martin Sebor <[email protected]>
* 26.valarray.members.stdcxx-313.cpp: Regression test for STDCXX-313.
2007-10-10 Martin Sebor <[email protected]>
* 26.valarray.unary.stdcxx-314.cpp: Regression test for STDCXX-314.
2007-10-10 Martin Sebor <[email protected]>
* 26.valarray.members.stdcxx-318.cpp: Regression test for STCDCXX-318.
2007-10-10 Travis Vitek <[email protected]>
STDCXX-582
* 0.printf.cpp (test_errno): Deallocate memory allocated
automatically by rw_snprintfa().
2007-10-05 Farid Zaripov <[email protected]>
* _punct.cc (__rw_match_name): Added missing space character.
2007-10-04 Farid Zaripov <[email protected]>
STDCXX-575
* 22.locale.cons.mt.cpp [_MSC_VER] (test_ctors): If
cat == std::locale::messages, compare combined locale
with first because of the MSVC doesn't support
LC_MESSAGES constant.
2007-10-04 Farid Zaripov <[email protected]>
* Merged the head of branches/4.2.0
2007-10-04 Farid Zaripov <[email protected]>
* 27.stringbuf.xsputn.stdcxx-576.cpp: Regression test for STDCXX-576
issue.
2007-10-04 Farid Zaripov <[email protected]>
* Merged the head of branches/4.2.0
2007-10-03 Farid Zaripov <[email protected]>
* 22.locale.moneypunct.cpp (convert): Save the name of the
original locale using std::string object. Use return instead
of break to avoid restoring the original locale twice.
2007-10-03 Farid Zaripov <[email protected]>
* 23.vector.bool.stdcxx-235.cpp (main): Corrected the
lines which are testing the operator!=.
2007-10-03 Farid Zaripov <[email protected]>
* display.cpp (print_status_plain): Use float arithmetic when
calculating the percent of the failed assertions to avoid
overflow of the unsigned int type.
2007-10-01 Farid Zaripov <[email protected]>
* Merged the head of branches/4.2.0
2007-10-01 Farid Zaripov <[email protected]>
* Merged the head of branches/4.2.0
2007-10-01 Farid Zaripov <[email protected]>
* time_put.cpp (__rw_get_date_fmat): Convert char argument
of isspace(), isdigit(), ispunct() to unsigned char.
(__rw_get_time_fmat): Ditto.
2007-10-01 Farid Zaripov <[email protected]>
* locale.cpp [_WIN32] (EnumLocales): New function to
enumerate system locales.
(print_locale_names): Obtain list of system locales if
RWSTD_LOCALE_ROOT environment variable is not defined.
2007-10-01 Farid Zaripov <[email protected]>
* Merged the head of branches/4.2.0
2007-09-26 Travis Vitek <[email protected]>
STDCXX-571
* 22.locale.numpunct.mt.cpp (run_test): Use C++ locale to
generate test data. This is to avoid any incompatibilities
between C and C++ locales.
(thread_func): Updated to use changed test data types.
(main): add support for command line options nlocales and
shared-locale for consistency with other multithreaded locale
tests.
2007-09-27 Farid Zaripov <[email protected]>
* projects.js (CreateProjectsDefs): Set stdcxx_runtests
project dependent on stdcxx_utils project (was dependent
on exec project only).
2007-09-26 Martin Sebor <[email protected]>
* ctype.cpp (main): Parenthesized a call to ctype::toupper() to avoid
errors when the symbol is shadowed by a macro defined in libc header(s)
as happens to be the case with gcc 4 on Darwin.
2007-09-26 Martin Sebor <[email protected]>
STDCXX-572
* aliases.cpp (ci_pre_compare): Parenthesized calls to two-argument
overload of tolower() to avoid errors when the symbol is #defined
as a macro in libc header(s) as is the case with gcc 4 on Darwin.
2007-09-26 Farid Zaripov <[email protected]>
* locale.cpp [_WIN32]: Add /A:D option in dir command
to print the directory names only.
2007-09-26 Farid Zaripov <[email protected]>
* 22.locale.moneypunct.mt.cpp (thread_loop_body): Corrected char type
to wchar_t.
2007-09-26 Farid Zaripov <[email protected]>
* 22.locale.money.get.cpp (set_pattern): New function to translate
test format to money_base::pattern.
(do_test): If fmat is not null set pattern using set_pattern().
(test_get): Test patterns replaced to human-readable form.
2007-09-26 Farid Zaripov <[email protected]>
* _money_get.cc (_C_get): If no characters available during
parsing sign part of the pattern, then set failbit only when
positive_sign and negative_sign both are not empty. Else set
negative sign if positive_sign is not empty and negative_sign
is empty.
2007-09-26 Farid Zaripov <[email protected]>
* msvc-7.0.config: Added new config variable: LIBS.
* utilities.js: Ditto.
* msvcex-8.0.config: Set LIBS=user32.lib (by default
the VCExpress links with kernel32.lib only).
* projects.js: Use LIBS config variable instead of
hardcoded commonLibs.
2007-09-25 Martin Sebor <[email protected]>
STDCXX-315
* valarray (atan2): Initialized array elements before assigning
to them.
2007-09-25 Martin Sebor <[email protected]>
* 26.valarray.transcend.stdcxx-315.cpp: Added regression test
for STDCXX-315.
2007-09-25 Andrew Black <[email protected]>
STDCXX-440
* exec.cpp (limit_process): Stop itteration over limits structure
when name element is null, not limit element. Old behavior
incorrectly aborted loop when encountering the first limit that
didn't need to be set.
2007-09-25 Martin Sebor <[email protected]>
* 26.valarray.sub.stdcxx-309.cpp: Added regression test for STCXX-309.
2007-09-25 Martin Sebor <[email protected]>
* 26.valarray.binary.stdcxx-237.cpp: Added regression test for
STCXX-237.
2007-09-25 Dennis Handly <[email protected]>
STDCXX-237
STDCXX-448
* valarray (ind_numb): Returned 0 when the lengths array is empty.
2007-09-24 Martin Sebor <[email protected]>
STDCXX-404
* charmap.h (<iconv.h>): Removed a redundant _MSC_VER guard.
(open_iconv_to_utf8, open_iconv_to_ext, ic_to_utf8_, ic_to_ext_):
Guarded declarations with _RWSTD_NO_ICONV instead of _MSC_VER.
* charmap.cpp (my_iconv_open): Guarded function definition with
_RWSTD_NO_ICONV instead of _MSC_VER.
(convert_to_utf8): Defined function unconditionally and guarded
implementation with _RWSTD_NO_ICONV (defaulting to returning 0
when the macro is #defined).
(ic_to_utf8_, ic_to_ext_): Guarded the assignment of variables
with _RWSTD_NO_ICONV.
Guarded MSVC-specific behavior with _MSC_VER.
2007-09-24 Travis Vitek <[email protected]>
STDCXX-492
* string (operator+=): Replace call to append with push_back
for performance.
(append): Avoid calling replace() from append if there is
sufficient buffer space available for performance.
(append): Simplify append overload, move it to header and then
inline it.
(append): Use _RWSTD_SIZE_T to avoid integer overflow problems
that could lead to heap corruption.
(push_back): Call replace() instead of append when buffer
reallocation required. cleanup. avoid integer overflow problem.
* string.cc (append): Moved append overload to header and make
it inline.
2007-09-22 Martin Sebor <[email protected]>
* 23.list.insert.cpp (InsertRange, InsertRangeOverload): Removed
an unused local vaiable to silence a gcc warning: unused variable.
(InsertRangePtrOverload): Removed const qualification from a const
cast to silence Intel C++ warning warning #191: type qualifier is
meaningless on cast type.
2007-09-22 Martin Sebor <[email protected]>
* 23.list.assign.cpp (AssignRangePtrOverload): Removed a pointless
const qualification from a cast to silence Intel C++ warning #191:
type qualifier is meaningless on cast type.
(AssignRangeOverload): Constified a local variable.
2007-09-21 Martin Sebor <[email protected]>
STDCXX-570
* complex (pow): Removed inline keyword from the declaration
of a function template outlined in revision 545847 while fixing
STDCXX-447.
2007-09-20 Martin Sebor <[email protected]>
STDCXX-567
* atomic.s (__rw_atomic_xchg8): Appended the 'b' (byte) prefix
to the xchg instruction instead of counting on the assembler to
figure it out from the widths of the operands to prevent an error
when using the Sun Assembler (which, unlike the GNU assembler,
doesn't support doing this).
2007-09-20 Martin Sebor <[email protected]>
* 0.printf.cpp (__PURE_CNAME): Undefined Compaq (now HP) C++ macro
to bring in ENOMEM from <errno.h> otherwise guarded (and undefined)
by the compiler's strict implementation of the C++ libc headers in
response to the -std strict_ansi_errors command line option.
* 0.process: Ditto for ENOENT, ECHILD, and ESRCH.
* 18.limits.stdcxx-436.cpp: Same for popen().
2007-09-20 Farid Zaripov <[email protected]>
STDCXX-560
* icc-10.0-x64.config: Added ASL header.
* icc-10.0.config: Ditto.
* icc-9.0.config: Ditto.
* icc-9.1-x64.config: Ditto.
* icc-9.1.config: Ditto.
* msvc-7.0.config: Ditto.
* msvc-7.1.config: Ditto.
* msvc-8.0-x64.config: Ditto.
* msvc-8.0.config: Ditto.
* msvc-9.0-x64.config: Ditto.
* msvc-9.0.config: Ditto.
* msvcex-8.0.config: Ditto.
2007-09-20 Travis Vitek <[email protected]>
STDCXX-561
* ANSI_X3.110-1983: Add ASL Header
* ANSI_X3.4-1968: Same.
* ASMO_449: Same.
* BIG5: Same.
* BIG5-HKSCS: Same.
* BS_4730: Same.
* BS_VIEWDATA: Same.
* CP10007: Same.
* CP1250: Same.
* CP1251: Same.
* CP1252: Same.
* CP1253: Same.
* CP1254: Same.
* CP1255: Same.
* CP1256: Same.
* CP1257: Same.
* CP1258: Same.
* CP437: Same.
* CP737: Same.
* CP775: Same.
* CP949: Same.
* CSA_Z243.4-1985-1: Same.
* CSA_Z243.4-1985-2: Same.
* CSA_Z243.4-1985-GR: Same.
* CSN_369103: Same.
* CWI: Same.
* DEC-MCS: Same.
* DIN_66003: Same.
* DS_2089: Same.
* EBCDIC-AT-DE: Same.
* EBCDIC-AT-DE-A: Same.
* EBCDIC-CA-FR: Same.
* EBCDIC-DK-NO: Same.
* EBCDIC-DK-NO-A: Same.
* EBCDIC-ES: Same.
* EBCDIC-ES-A: Same.
* EBCDIC-ES-S: Same.
* EBCDIC-FI-SE: Same.
* EBCDIC-FI-SE-A: Same.
* EBCDIC-FR: Same.
* EBCDIC-IS-FRISS: Same.
* EBCDIC-IT: Same.
* EBCDIC-PT: Same.
* EBCDIC-UK: Same.
* EBCDIC-US: Same.
* ECMA-CYRILLIC: Same.
* ES: Same.
* ES2: Same.
* EUC-JP: Same.
* EUC-KR: Same.
* EUC-TW: Same.
* GB18030: Same.
* GB2312: Same.
* GB_1988-80: Same.
* GBK: Same.
* GEORGIAN-ACADEMY: Same.
* GEORGIAN-PS: Same.
* GOST_19768-74: Same.
* GREEK-CCITT: Same.
* GREEK7: Same.
* GREEK7-OLD: Same.
* HP-ROMAN8: Same.
* IBM037: Same.
* IBM038: Same.
* IBM1004: Same.
* IBM1026: Same.
* IBM1047: Same.
* IBM256: Same.
* IBM273: Same.
* IBM274: Same.
* IBM275: Same.
* IBM277: Same.
* IBM278: Same.
* IBM280: Same.
* IBM281: Same.
* IBM284: Same.
* IBM285: Same.
* IBM290: Same.
* IBM297: Same.
* IBM420: Same.
* IBM423: Same.
* IBM424: Same.
* IBM437: Same.
* IBM500: Same.
* IBM850: Same.
* IBM851: Same.
* IBM852: Same.
* IBM855: Same.
* IBM857: Same.
* IBM860: Same.
* IBM861: Same.
* IBM862: Same.
* IBM863: Same.
* IBM864: Same.
* IBM865: Same.
* IBM866: Same.
* IBM868: Same.
* IBM869: Same.
* IBM870: Same.
* IBM871: Same.
* IBM874: Same.
* IBM875: Same.
* IBM880: Same.
* IBM891: Same.
* IBM903: Same.
* IBM904: Same.
* IBM905: Same.
* IBM918: Same.
* IEC_P27-1: Same.
* INIS: Same.
* INIS-8: Same.
* INIS-CYRILLIC: Same.
* INVARIANT: Same.
* ISIRI-3342: Same.
* ISO-8859-1: Same.
* ISO-8859-10: Same.
* ISO-8859-13: Same.
* ISO-8859-14: Same.
* ISO-8859-15: Same.
* ISO-8859-16: Same.
* ISO-8859-2: Same.
* ISO-8859-3: Same.
* ISO-8859-4: Same.
* ISO-8859-5: Same.
* ISO-8859-6: Same.
* ISO-8859-7: Same.
* ISO-8859-8: Same.
* ISO-8859-9: Same.
* ISO-IR-197: Same.
* ISO-IR-209: Same.
* ISO-IR-90: Same.
* ISO_10367-BOX: Same.
* ISO_10646: Same.
* ISO_2033-1983: Same.
* ISO_5427: Same.
* ISO_5427-EXT: Same.
* ISO_5428: Same.
* ISO_646.BASIC: Same.
* ISO_646.IRV: Same.
* ISO_6937: Same.
* ISO_6937-2-25: Same.
* ISO_6937-2-ADD: Same.
* ISO_8859-1,GL: Same.
* ISO_8859-SUPP: Same.
* IT: Same.
* JIS_C6220-1969-JP: Same.
* JIS_C6220-1969-RO: Same.
* JIS_C6229-1984-A: Same.
* JIS_C6229-1984-B: Same.
* JIS_C6229-1984-B-ADD: Same.
* JIS_C6229-1984-HAND: Same.
* JIS_C6229-1984-HAND-ADD: Same.
* JIS_C6229-1984-KANA: Same.
* JIS_X0201: Same.
* JOHAB: Same.
* JUS_I.B1.002: Same.
* JUS_I.B1.003-MAC: Same.
* JUS_I.B1.003-SERB: Same.
* KOI-8: Same.
* KOI8-R: Same.
* KOI8-T: Same.
* KOI8-U: Same.
* KSC5636: Same.
* LATIN-GREEK: Same.
* LATIN-GREEK-1: Same.
* MAC-CYRILLIC: Same.
* MAC-IS: Same.
* MAC-SAMI: Same.
* MAC-UK: Same.
* MACINTOSH: Same.
* MSZ_7795.3: Same.
* NATS-DANO: Same.
* NATS-DANO-ADD: Same.
* NATS-SEFI: Same.
* NATS-SEFI-ADD: Same.
* NC_NC00-10: Same.
* NEXTSTEP: Same.
* NF_Z_62-010: Same.
* NF_Z_62-010_1973: Same.
* NS_4551-1: Same.
* NS_4551-2: Same.
* PT: Same.
* PT2: Same.
* SAMI: Same.
* SAMI-WS2: Same.
* SEN_850200_B: Same.
* SEN_850200_C: Same.
* Shift_JIS: Same.
* T.101-G2: Same.
* T.61-7BIT: Same.
* TCVN5712-1: Same.
* TIS-620: Same.
* UTF-8: Same.
* VIDEOTEX-SUPPL: Same.
* VISCII: Same.
* af_ZA: Same.
* am_ET: Same.
* ar_AE: Same.
* ar_BH: Same.
* ar_DZ: Same.
* ar_EG: Same.
* ar_IN: Same.
* ar_IQ: Same.
* ar_JO: Same.
* ar_KW: Same.
* ar_LB: Same.
* ar_LY: Same.
* ar_MA: Same.
* ar_OM: Same.
* ar_QA: Same.
* ar_SA: Same.
* ar_SD: Same.
* ar_SY: Same.
* ar_TN: Same.
* ar_YE: Same.
* az_AZ: Same.
* be_BY: Same.
* bg_BG: Same.
* bn_IN: Same.
* br_FR: Same.
* bs_BA: Same.
* ca_ES: Same.
* ca_ES.euro: Same.
* cs_CZ: Same.
* cy_GB: Same.
* da_DK: Same.
* de_AT: Same.
* de_AT.euro: Same.
* de_BE: Same.
* de_BE.euro: Same.
* de_CH: Same.
* de_DE: Same.
* de_DE.euro: Same.
* de_LU: Same.
* de_LU.euro: Same.
* el_GR: Same.
* el_GR.euro: Same.
* en_AU: Same.
* en_BW: Same.
* en_CA: Same.
* en_DK: Same.
* en_GB: Same.
* en_HK: Same.
* en_IE: Same.
* en_IE.euro: Same.
* en_IN: Same.
* en_NZ: Same.
* en_PH: Same.
* en_SG: Same.
* en_US: Same.
* en_ZA: Same.
* en_ZW: Same.
* es_AR: Same.
* es_BO: Same.
* es_CL: Same.
* es_CO: Same.
* es_CR: Same.
* es_DO: Same.
* es_EC: Same.
* es_ES: Same.
* es_ES.euro: Same.
* es_GT: Same.
* es_HN: Same.
* es_MX: Same.
* es_NI: Same.
* es_PA: Same.
* es_PE: Same.
* es_PR: Same.
* es_PY: Same.
* es_SV: Same.
* es_US: Same.
* es_UY: Same.
* es_VE: Same.
* et_EE: Same.
* eu_ES: Same.
* eu_ES.euro: Same.
* fa_IR: Same.
* fi_FI: Same.
* fi_FI.euro: Same.
* fo_FO: Same.
* fr_BE: Same.
* fr_BE.euro: Same.
* fr_CA: Same.
* fr_CH: Same.
* fr_FR: Same.
* fr_FR.euro: Same.
* fr_LU: Same.
* fr_LU.euro: Same.
* ga_IE: Same.
* ga_IE.euro: Same.
* gd_GB: Same.
* gl_ES: Same.
* gl_ES.euro: Same.
* gv_GB: Same.
* he_IL: Same.
* hi_IN: Same.
* hr_HR: Same.
* hu_HU: Same.
* hy_AM: Same.
* i18n: Same.
* id_ID: Same.
* is_IS: Same.
* iso14651_t1: Same.
* it_CH: Same.
* it_IT: Same.
* it_IT.euro: Same.
* iw_IL: Same.
* ja_JP: Same.
* ka_GE: Same.
* kl_GL: Same.
* ko_KR: Same.
* kw_GB: Same.
* lt_LT: Same.
* lv_LV: Same.
* mi_NZ: Same.
* mk_MK: Same.
* mr_IN: Same.
* ms_MY: Same.
* mt_MT: Same.
* nl_BE: Same.
* nl_BE.euro: Same.
* nl_NL: Same.
* nl_NL.euro: Same.
* nn_NO: Same.
* no_NO: Same.
* oc_FR: Same.
* pl_PL: Same.
* POSIX: Same.
* pt_BR: Same.
* pt_PT: Same.
* pt_PT.euro: Same.
* ro_RO: Same.
* ru_RU: Same.
* ru_UA: Same.
* se_NO: Same.
* sk_SK: Same.
* sl_SI: Same.
* sq_AL: Same.
* sr_YU: Same.
* sr_YU.cyrillic: Same.
* sv_FI: Same.
* sv_FI.euro: Same.
* sv_SE: Same.
* ta_IN: Same.
* te_IN: Same.
* tg_TJ: Same.
* th_TH: Same.
* ti_ER: Same.
* ti_ET: Same.
* tl_PH: Same.
* tr_TR: Same.
* translit_circle: Same.
* translit_cjk_compat: Same.
* translit_cjk_variants: Same.
* translit_combining: Same.
* translit_compat: Same.
* translit_et: Same.
* translit_font: Same.
* translit_fraction: Same.
* translit_hangul: Same.
* translit_narrow: Same.
* translit_neutral: Same.
* translit_small: Same.
* translit_wide: Same.
* tt_RU: Same.
* uk_UA: Same.
* ur_PK: Same.
* uz_UZ: Same.
* vi_VN: Same.
* yi_US: Same.
* zh_CN: Same.
* zh_HK: Same.
* zh_SG: Same.
* zh_TW: Same.
* 100: Same.
* 101: Same.
* 102: Same.
* 1026: Same.
* 103: Same.
* 104: Same.
* 1047: Same.
* 105: Same.
* 106: Same.
* 107: Same.
* 108: Same.
* 109: Same.
* 11: Same.
* 110: Same.
* 111: Same.
* 112: Same.
* 113: Same.
* 114: Same.
* 115: Same.
* 116: Same.
* 117: Same.
* 118: Same.
* 119: Same.
* 12: Same.
* 120: Same.
* 121: Same.
* 122: Same.
* 123: Same.
* 124: Same.
* 125: Same.
* 126: Same.
* 127: Same.
* 128: Same.
* 129: Same.
* 13: Same.
* 130: Same.
* 131: Same.
* 132: Same.
* 133: Same.
* 134: Same.
* 135: Same.
* 136: Same.
* 137: Same.
* 138: Same.
* 139: Same.
* 14: Same.
* 140: Same.
* 141: Same.
* 142: Same.
* 143: Same.
* 144: Same.
* 145: Same.
* 146: Same.
* 147: Same.
* 148: Same.
* 149: Same.
* 15: Same.
* 150: Same.
* 151: Same.
* 152: Same.
* 153: Same.
* 154: Same.
* 155: Same.
* 156: Same.
* 16: Same.
* 17: Same.
* 18: Same.
* 19: Same.
* 20: Same.
* 21: Same.
* 22: Same.
* 23: Same.
* 24: Same.
* 25: Same.
* 26: Same.
* 27: Same.
* 28: Same.
* 29: Same.
* 30: Same.
* 31: Same.
* 32: Same.
* 33: Same.
* 34: Same.
* 35: Same.
* 36: Same.
* 37: Same.
* 38: Same.
* 39: Same.
* 40: Same.
* 41: Same.
* 42: Same.
* 43: Same.
* 437: Same.
* 44: Same.
* 45: Same.
* 46: Same.
* 47: Same.
* 48: Same.
* 49: Same.
* 50: Same.
* 500: Same.
* 500V1: Same.
* 51: Same.