updates from savannah outage
[pspp] / lib / config.charset
1 #! /bin/sh
2 # Output a system dependent table of character encoding aliases.
3 #
4 #   Copyright (C) 2000-2003 Free Software Foundation, Inc.
5 #
6 #   This program is free software; you can redistribute it and/or modify
7 #   it under the terms of the GNU General Public License as published by
8 #   the Free Software Foundation; either version 2, or (at your option)
9 #   any later version.
10 #
11 #   This program is distributed in the hope that it will be useful,
12 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #   GNU General Public License for more details.
15 #
16 #   You should have received a copy of the GNU General Public License along
17 #   with this program; if not, write to the Free Software Foundation,
18 #   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 #
20 # The table consists of lines of the form
21 #    ALIAS  CANONICAL
22 #
23 # ALIAS is the (system dependent) result of "nl_langinfo (CODESET)".
24 # ALIAS is compared in a case sensitive way.
25 #
26 # CANONICAL is the GNU canonical name for this character encoding.
27 # It must be an encoding supported by libiconv. Support by GNU libc is
28 # also desirable. CANONICAL is case insensitive. Usually an upper case
29 # MIME charset name is preferred.
30 # The current list of GNU canonical charset names is as follows.
31 #
32 #       name                         used by which systems         a MIME name?
33 #   ASCII, ANSI_X3.4-1968     glibc solaris freebsd
34 #   ISO-8859-1                glibc aix hpux irix osf solaris freebsd   yes
35 #   ISO-8859-2                glibc aix hpux irix osf solaris freebsd   yes
36 #   ISO-8859-3                glibc solaris                             yes
37 #   ISO-8859-4                osf solaris freebsd                       yes
38 #   ISO-8859-5                glibc aix hpux irix osf solaris freebsd   yes
39 #   ISO-8859-6                glibc aix hpux solaris                    yes
40 #   ISO-8859-7                glibc aix hpux irix osf solaris           yes
41 #   ISO-8859-8                glibc aix hpux osf solaris                yes
42 #   ISO-8859-9                glibc aix hpux irix osf solaris           yes
43 #   ISO-8859-13               glibc
44 #   ISO-8859-14               glibc
45 #   ISO-8859-15               glibc aix osf solaris freebsd
46 #   KOI8-R                    glibc solaris freebsd                     yes
47 #   KOI8-U                    glibc freebsd                             yes
48 #   KOI8-T                    glibc
49 #   CP437                     dos
50 #   CP775                     dos
51 #   CP850                     aix osf dos
52 #   CP852                     dos
53 #   CP855                     dos
54 #   CP856                     aix
55 #   CP857                     dos
56 #   CP861                     dos
57 #   CP862                     dos
58 #   CP864                     dos
59 #   CP865                     dos
60 #   CP866                     freebsd dos
61 #   CP869                     dos
62 #   CP874                     woe32 dos
63 #   CP922                     aix
64 #   CP932                     aix woe32 dos
65 #   CP943                     aix
66 #   CP949                     osf woe32 dos
67 #   CP950                     woe32 dos
68 #   CP1046                    aix
69 #   CP1124                    aix
70 #   CP1125                    dos
71 #   CP1129                    aix
72 #   CP1250                    woe32
73 #   CP1251                    glibc solaris woe32
74 #   CP1252                    aix woe32
75 #   CP1253                    woe32
76 #   CP1254                    woe32
77 #   CP1255                    glibc woe32
78 #   CP1256                    woe32
79 #   CP1257                    woe32
80 #   GB2312                    glibc aix hpux irix solaris freebsd       yes
81 #   EUC-JP                    glibc aix hpux irix osf solaris freebsd   yes
82 #   EUC-KR                    glibc aix hpux irix osf solaris freebsd   yes
83 #   EUC-TW                    glibc aix hpux irix osf solaris
84 #   BIG5                      glibc aix hpux osf solaris freebsd        yes
85 #   BIG5-HKSCS                glibc solaris
86 #   GBK                       glibc aix osf solaris woe32 dos
87 #   GB18030                   glibc solaris
88 #   SHIFT_JIS                 hpux osf solaris freebsd                  yes
89 #   JOHAB                     glibc solaris woe32
90 #   TIS-620                   glibc aix hpux osf solaris
91 #   VISCII                    glibc                                     yes
92 #   TCVN5712-1                glibc
93 #   GEORGIAN-PS               glibc
94 #   HP-ROMAN8                 hpux
95 #   HP-ARABIC8                hpux
96 #   HP-GREEK8                 hpux
97 #   HP-HEBREW8                hpux
98 #   HP-TURKISH8               hpux
99 #   HP-KANA8                  hpux
100 #   DEC-KANJI                 osf
101 #   DEC-HANYU                 osf
102 #   UTF-8                     glibc aix hpux osf solaris                yes
103 #
104 # Note: Names which are not marked as being a MIME name should not be used in
105 # Internet protocols for information interchange (mail, news, etc.).
106 #
107 # Note: ASCII and ANSI_X3.4-1968 are synonymous canonical names. Applications
108 # must understand both names and treat them as equivalent.
109 #
110 # The first argument passed to this file is the canonical host specification,
111 #    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
112 # or
113 #    CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
114
115 host="$1"
116 os=`echo "$host" | sed -e 's/^[^-]*-[^-]*-\(.*\)$/\1/'`
117 echo "# This file contains a table of character encoding aliases,"
118 echo "# suitable for operating system '${os}'."
119 echo "# It was automatically generated from config.charset."
120 # List of references, updated during installation:
121 echo "# Packages using this file: "
122 case "$os" in
123     linux-gnulibc1*)
124         # Linux libc5 doesn't have nl_langinfo(CODESET); therefore
125         # localcharset.c falls back to using the full locale name
126         # from the environment variables.
127         echo "C ASCII"
128         echo "POSIX ASCII"
129         for l in af af_ZA ca ca_ES da da_DK de de_AT de_BE de_CH de_DE de_LU \
130                  en en_AU en_BW en_CA en_DK en_GB en_IE en_NZ en_US en_ZA \
131                  en_ZW es es_AR es_BO es_CL es_CO es_DO es_EC es_ES es_GT \
132                  es_HN es_MX es_PA es_PE es_PY es_SV es_US es_UY es_VE et \
133                  et_EE eu eu_ES fi fi_FI fo fo_FO fr fr_BE fr_CA fr_CH fr_FR \
134                  fr_LU ga ga_IE gl gl_ES id id_ID in in_ID is is_IS it it_CH \
135                  it_IT kl kl_GL nl nl_BE nl_NL no no_NO pt pt_BR pt_PT sv \
136                  sv_FI sv_SE; do
137           echo "$l ISO-8859-1"
138           echo "$l.iso-8859-1 ISO-8859-1"
139           echo "$l.iso-8859-15 ISO-8859-15"
140           echo "$l.iso-8859-15@euro ISO-8859-15"
141           echo "$l@euro ISO-8859-15"
142           echo "$l.cp-437 CP437"
143           echo "$l.cp-850 CP850"
144           echo "$l.cp-1252 CP1252"
145           echo "$l.cp-1252@euro CP1252"
146           #echo "$l.atari-st ATARI-ST" # not a commonly used encoding
147           echo "$l.utf-8 UTF-8"
148           echo "$l.utf-8@euro UTF-8"
149         done
150         for l in cs cs_CZ hr hr_HR hu hu_HU pl pl_PL ro ro_RO sk sk_SK sl \
151                  sl_SI sr sr_CS sr_YU; do
152           echo "$l ISO-8859-2"
153           echo "$l.iso-8859-2 ISO-8859-2"
154           echo "$l.cp-852 CP852"
155           echo "$l.cp-1250 CP1250"
156           echo "$l.utf-8 UTF-8"
157         done
158         for l in mk mk_MK ru ru_RU; do
159           echo "$l ISO-8859-5"
160           echo "$l.iso-8859-5 ISO-8859-5"
161           echo "$l.koi8-r KOI8-R"
162           echo "$l.cp-866 CP866"
163           echo "$l.cp-1251 CP1251"
164           echo "$l.utf-8 UTF-8"
165         done
166         for l in ar ar_SA; do
167           echo "$l ISO-8859-6"
168           echo "$l.iso-8859-6 ISO-8859-6"
169           echo "$l.cp-864 CP864"
170           #echo "$l.cp-868 CP868" # not a commonly used encoding
171           echo "$l.cp-1256 CP1256"
172           echo "$l.utf-8 UTF-8"
173         done
174         for l in el el_GR gr gr_GR; do
175           echo "$l ISO-8859-7"
176           echo "$l.iso-8859-7 ISO-8859-7"
177           echo "$l.cp-869 CP869"
178           echo "$l.cp-1253 CP1253"
179           echo "$l.cp-1253@euro CP1253"
180           echo "$l.utf-8 UTF-8"
181           echo "$l.utf-8@euro UTF-8"
182         done
183         for l in he he_IL iw iw_IL; do
184           echo "$l ISO-8859-8"
185           echo "$l.iso-8859-8 ISO-8859-8"
186           echo "$l.cp-862 CP862"
187           echo "$l.cp-1255 CP1255"
188           echo "$l.utf-8 UTF-8"
189         done
190         for l in tr tr_TR; do
191           echo "$l ISO-8859-9"
192           echo "$l.iso-8859-9 ISO-8859-9"
193           echo "$l.cp-857 CP857"
194           echo "$l.cp-1254 CP1254"
195           echo "$l.utf-8 UTF-8"
196         done
197         for l in lt lt_LT lv lv_LV; do
198           #echo "$l BALTIC" # not a commonly used encoding, wrong encoding name
199           echo "$l ISO-8859-13"
200         done
201         for l in ru_UA uk uk_UA; do
202           echo "$l KOI8-U"
203         done
204         for l in zh zh_CN; do
205           #echo "$l GB_2312-80" # not a commonly used encoding, wrong encoding name
206           echo "$l GB2312"
207         done
208         for l in ja ja_JP ja_JP.EUC; do
209           echo "$l EUC-JP"
210         done
211         for l in ko ko_KR; do
212           echo "$l EUC-KR"
213         done
214         for l in th th_TH; do
215           echo "$l TIS-620"
216         done
217         for l in fa fa_IR; do
218           #echo "$l ISIRI-3342" # a broken encoding
219           echo "$l.utf-8 UTF-8"
220         done
221         ;;
222     linux* | *-gnu*)
223         # With glibc-2.1 or newer, we don't need any canonicalization,
224         # because glibc has iconv and both glibc and libiconv support all
225         # GNU canonical names directly. Therefore, the Makefile does not
226         # need to install the alias file at all.
227         # The following applies only to glibc-2.0.x and older libcs.
228         echo "ISO_646.IRV:1983 ASCII"
229         ;;
230     aix*)
231         echo "ISO8859-1 ISO-8859-1"
232         echo "ISO8859-2 ISO-8859-2"
233         echo "ISO8859-5 ISO-8859-5"
234         echo "ISO8859-6 ISO-8859-6"
235         echo "ISO8859-7 ISO-8859-7"
236         echo "ISO8859-8 ISO-8859-8"
237         echo "ISO8859-9 ISO-8859-9"
238         echo "ISO8859-15 ISO-8859-15"
239         echo "IBM-850 CP850"
240         echo "IBM-856 CP856"
241         echo "IBM-921 ISO-8859-13"
242         echo "IBM-922 CP922"
243         echo "IBM-932 CP932"
244         echo "IBM-943 CP943"
245         echo "IBM-1046 CP1046"
246         echo "IBM-1124 CP1124"
247         echo "IBM-1129 CP1129"
248         echo "IBM-1252 CP1252"
249         echo "IBM-eucCN GB2312"
250         echo "IBM-eucJP EUC-JP"
251         echo "IBM-eucKR EUC-KR"
252         echo "IBM-eucTW EUC-TW"
253         echo "big5 BIG5"
254         echo "GBK GBK"
255         echo "TIS-620 TIS-620"
256         echo "UTF-8 UTF-8"
257         ;;
258     hpux*)
259         echo "iso88591 ISO-8859-1"
260         echo "iso88592 ISO-8859-2"
261         echo "iso88595 ISO-8859-5"
262         echo "iso88596 ISO-8859-6"
263         echo "iso88597 ISO-8859-7"
264         echo "iso88598 ISO-8859-8"
265         echo "iso88599 ISO-8859-9"
266         echo "iso885915 ISO-8859-15"
267         echo "roman8 HP-ROMAN8"
268         echo "arabic8 HP-ARABIC8"
269         echo "greek8 HP-GREEK8"
270         echo "hebrew8 HP-HEBREW8"
271         echo "turkish8 HP-TURKISH8"
272         echo "kana8 HP-KANA8"
273         echo "tis620 TIS-620"
274         echo "big5 BIG5"
275         echo "eucJP EUC-JP"
276         echo "eucKR EUC-KR"
277         echo "eucTW EUC-TW"
278         echo "hp15CN GB2312"
279         #echo "ccdc ?" # what is this?
280         echo "SJIS SHIFT_JIS"
281         echo "utf8 UTF-8"
282         ;;
283     irix*)
284         echo "ISO8859-1 ISO-8859-1"
285         echo "ISO8859-2 ISO-8859-2"
286         echo "ISO8859-5 ISO-8859-5"
287         echo "ISO8859-7 ISO-8859-7"
288         echo "ISO8859-9 ISO-8859-9"
289         echo "eucCN GB2312"
290         echo "eucJP EUC-JP"
291         echo "eucKR EUC-KR"
292         echo "eucTW EUC-TW"
293         ;;
294     osf*)
295         echo "ISO8859-1 ISO-8859-1"
296         echo "ISO8859-2 ISO-8859-2"
297         echo "ISO8859-4 ISO-8859-4"
298         echo "ISO8859-5 ISO-8859-5"
299         echo "ISO8859-7 ISO-8859-7"
300         echo "ISO8859-8 ISO-8859-8"
301         echo "ISO8859-9 ISO-8859-9"
302         echo "ISO8859-15 ISO-8859-15"
303         echo "cp850 CP850"
304         echo "big5 BIG5"
305         echo "dechanyu DEC-HANYU"
306         echo "dechanzi GB2312"
307         echo "deckanji DEC-KANJI"
308         echo "deckorean EUC-KR"
309         echo "eucJP EUC-JP"
310         echo "eucKR EUC-KR"
311         echo "eucTW EUC-TW"
312         echo "GBK GBK"
313         echo "KSC5601 CP949"
314         echo "sdeckanji EUC-JP"
315         echo "SJIS SHIFT_JIS"
316         echo "TACTIS TIS-620"
317         echo "UTF-8 UTF-8"
318         ;;
319     solaris*)
320         echo "646 ASCII"
321         echo "ISO8859-1 ISO-8859-1"
322         echo "ISO8859-2 ISO-8859-2"
323         echo "ISO8859-3 ISO-8859-3"
324         echo "ISO8859-4 ISO-8859-4"
325         echo "ISO8859-5 ISO-8859-5"
326         echo "ISO8859-6 ISO-8859-6"
327         echo "ISO8859-7 ISO-8859-7"
328         echo "ISO8859-8 ISO-8859-8"
329         echo "ISO8859-9 ISO-8859-9"
330         echo "ISO8859-15 ISO-8859-15"
331         echo "koi8-r KOI8-R"
332         echo "ansi-1251 CP1251"
333         echo "BIG5 BIG5"
334         echo "Big5-HKSCS BIG5-HKSCS"
335         echo "gb2312 GB2312"
336         echo "GBK GBK"
337         echo "GB18030 GB18030"
338         echo "cns11643 EUC-TW"
339         echo "5601 EUC-KR"
340         echo "ko_KR.johap92 JOHAB"
341         echo "eucJP EUC-JP"
342         echo "PCK SHIFT_JIS"
343         echo "TIS620.2533 TIS-620"
344         #echo "sun_eu_greek ?" # what is this?
345         echo "UTF-8 UTF-8"
346         ;;
347     freebsd* | os2*)
348         # FreeBSD 4.2 doesn't have nl_langinfo(CODESET); therefore
349         # localcharset.c falls back to using the full locale name
350         # from the environment variables.
351         # Likewise for OS/2. OS/2 has XFree86 just like FreeBSD. Just
352         # reuse FreeBSD's locale data for OS/2.
353         echo "C ASCII"
354         echo "US-ASCII ASCII"
355         for l in la_LN lt_LN; do
356           echo "$l.ASCII ASCII"
357         done
358         for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES \
359                  fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT la_LN \
360                  lt_LN nl_BE nl_NL no_NO pt_PT sv_SE; do
361           echo "$l.ISO_8859-1 ISO-8859-1"
362           echo "$l.DIS_8859-15 ISO-8859-15"
363         done
364         for l in cs_CZ hr_HR hu_HU la_LN lt_LN pl_PL sl_SI; do
365           echo "$l.ISO_8859-2 ISO-8859-2"
366         done
367         for l in la_LN lt_LT; do
368           echo "$l.ISO_8859-4 ISO-8859-4"
369         done
370         for l in ru_RU ru_SU; do
371           echo "$l.KOI8-R KOI8-R"
372           echo "$l.ISO_8859-5 ISO-8859-5"
373           echo "$l.CP866 CP866"
374         done
375         echo "uk_UA.KOI8-U KOI8-U"
376         echo "zh_TW.BIG5 BIG5"
377         echo "zh_TW.Big5 BIG5"
378         echo "zh_CN.EUC GB2312"
379         echo "ja_JP.EUC EUC-JP"
380         echo "ja_JP.SJIS SHIFT_JIS"
381         echo "ja_JP.Shift_JIS SHIFT_JIS"
382         echo "ko_KR.EUC EUC-KR"
383         ;;
384     netbsd*)
385         echo "646 ASCII"
386         echo "ISO8859-1 ISO-8859-1"
387         echo "ISO8859-2 ISO-8859-2"
388         echo "ISO8859-4 ISO-8859-4"
389         echo "ISO8859-5 ISO-8859-5"
390         echo "ISO8859-15 ISO-8859-15"
391         echo "eucCN GB2312"
392         echo "eucJP EUC-JP"
393         echo "eucKR EUC-KR"
394         echo "eucTW EUC-TW"
395         echo "BIG5 BIG5"
396         echo "SJIS SHIFT_JIS"
397         ;;
398     beos*)
399         # BeOS has a single locale, and it has UTF-8 encoding.
400         echo "* UTF-8"
401         ;;
402     msdosdjgpp*)
403         # DJGPP 2.03 doesn't have nl_langinfo(CODESET); therefore
404         # localcharset.c falls back to using the full locale name
405         # from the environment variables.
406         echo "#"
407         echo "# The encodings given here may not all be correct."
408         echo "# If you find that the encoding given for your language and"
409         echo "# country is not the one your DOS machine actually uses, just"
410         echo "# correct it in this file, and send a mail to"
411         echo "# Juan Manuel Guerrero <st001906@hrz1.hrz.tu-darmstadt.de>"
412         echo "# and Bruno Haible <bruno@clisp.org>."
413         echo "#"
414         echo "C ASCII"
415         # ISO-8859-1 languages
416         echo "ca CP850"
417         echo "ca_ES CP850"
418         echo "da CP865"    # not CP850 ??
419         echo "da_DK CP865" # not CP850 ??
420         echo "de CP850"
421         echo "de_AT CP850"
422         echo "de_CH CP850"
423         echo "de_DE CP850"
424         echo "en CP850"
425         echo "en_AU CP850" # not CP437 ??
426         echo "en_CA CP850"
427         echo "en_GB CP850"
428         echo "en_NZ CP437"
429         echo "en_US CP437"
430         echo "en_ZA CP850" # not CP437 ??
431         echo "es CP850"
432         echo "es_AR CP850"
433         echo "es_BO CP850"
434         echo "es_CL CP850"
435         echo "es_CO CP850"
436         echo "es_CR CP850"
437         echo "es_CU CP850"
438         echo "es_DO CP850"
439         echo "es_EC CP850"
440         echo "es_ES CP850"
441         echo "es_GT CP850"
442         echo "es_HN CP850"
443         echo "es_MX CP850"
444         echo "es_NI CP850"
445         echo "es_PA CP850"
446         echo "es_PY CP850"
447         echo "es_PE CP850"
448         echo "es_SV CP850"
449         echo "es_UY CP850"
450         echo "es_VE CP850"
451         echo "et CP850"
452         echo "et_EE CP850"
453         echo "eu CP850"
454         echo "eu_ES CP850"
455         echo "fi CP850"
456         echo "fi_FI CP850"
457         echo "fr CP850"
458         echo "fr_BE CP850"
459         echo "fr_CA CP850"
460         echo "fr_CH CP850"
461         echo "fr_FR CP850"
462         echo "ga CP850"
463         echo "ga_IE CP850"
464         echo "gd CP850"
465         echo "gd_GB CP850"
466         echo "gl CP850"
467         echo "gl_ES CP850"
468         echo "id CP850"    # not CP437 ??
469         echo "id_ID CP850" # not CP437 ??
470         echo "is CP861"    # not CP850 ??
471         echo "is_IS CP861" # not CP850 ??
472         echo "it CP850"
473         echo "it_CH CP850"
474         echo "it_IT CP850"
475         echo "lt CP775"
476         echo "lt_LT CP775"
477         echo "lv CP775"
478         echo "lv_LV CP775"
479         echo "nb CP865"    # not CP850 ??
480         echo "nb_NO CP865" # not CP850 ??
481         echo "nl CP850"
482         echo "nl_BE CP850"
483         echo "nl_NL CP850"
484         echo "nn CP865"    # not CP850 ??
485         echo "nn_NO CP865" # not CP850 ??
486         echo "no CP865"    # not CP850 ??
487         echo "no_NO CP865" # not CP850 ??
488         echo "pt CP850"
489         echo "pt_BR CP850"
490         echo "pt_PT CP850"
491         echo "sv CP850"
492         echo "sv_SE CP850"
493         # ISO-8859-2 languages
494         echo "cs CP852"
495         echo "cs_CZ CP852"
496         echo "hr CP852"
497         echo "hr_HR CP852"
498         echo "hu CP852"
499         echo "hu_HU CP852"
500         echo "pl CP852"
501         echo "pl_PL CP852"
502         echo "ro CP852"
503         echo "ro_RO CP852"
504         echo "sk CP852"
505         echo "sk_SK CP852"
506         echo "sl CP852"
507         echo "sl_SI CP852"
508         echo "sq CP852"
509         echo "sq_AL CP852"
510         echo "sr CP852"    # CP852 or CP866 or CP855 ??
511         echo "sr_CS CP852" # CP852 or CP866 or CP855 ??
512         echo "sr_YU CP852" # CP852 or CP866 or CP855 ??
513         # ISO-8859-3 languages
514         echo "mt CP850"
515         echo "mt_MT CP850"
516         # ISO-8859-5 languages
517         echo "be CP866"
518         echo "be_BE CP866"
519         echo "bg CP866"    # not CP855 ??
520         echo "bg_BG CP866" # not CP855 ??
521         echo "mk CP866"    # not CP855 ??
522         echo "mk_MK CP866" # not CP855 ??
523         echo "ru CP866"
524         echo "ru_RU CP866"
525         echo "uk CP1125"
526         echo "uk_UA CP1125"
527         # ISO-8859-6 languages
528         echo "ar CP864"
529         echo "ar_AE CP864"
530         echo "ar_DZ CP864"
531         echo "ar_EG CP864"
532         echo "ar_IQ CP864"
533         echo "ar_IR CP864"
534         echo "ar_JO CP864"
535         echo "ar_KW CP864"
536         echo "ar_MA CP864"
537         echo "ar_OM CP864"
538         echo "ar_QA CP864"
539         echo "ar_SA CP864"
540         echo "ar_SY CP864"
541         # ISO-8859-7 languages
542         echo "el CP869"
543         echo "el_GR CP869"
544         # ISO-8859-8 languages
545         echo "he CP862"
546         echo "he_IL CP862"
547         # ISO-8859-9 languages
548         echo "tr CP857"
549         echo "tr_TR CP857"
550         # Japanese
551         echo "ja CP932"
552         echo "ja_JP CP932"
553         # Chinese
554         echo "zh_CN GBK"
555         echo "zh_TW CP950" # not CP938 ??
556         # Korean
557         echo "kr CP949"    # not CP934 ??
558         echo "kr_KR CP949" # not CP934 ??
559         # Thai
560         echo "th CP874"
561         echo "th_TH CP874"
562         # Other
563         echo "eo CP850"
564         echo "eo_EO CP850"
565         ;;
566 esac