etc/services - sync with NetBSD-8
[minix.git] / external / bsd / bind / dist / contrib / idn / idnkit-1.0-src / lib / aliaslist.sh
blob47c3d4f919cb2b3b3eea00b1cbd1ae08d989f6fe
1 #!/bin/sh
3 # aliaslist.sh -- Generate `idnalias.conf.sample' file.
6 cpu_company_system="$1"
7 utf8_name="$2"
9 cat <<EOF
10 *.ISO_8859-1 ISO-8859-1
11 *.ISO_8859-2 ISO-8859-1
12 *.SJIS Shift_JIS
13 *.Shift_JIS Shift_JIS
14 ja_JP.EUC EUC-JP
15 ko_KR.EUC EUC-KR
16 *.big5 Big5
17 *.Big5 Big5
18 *.KOI8-R KOI8-R
19 *.GB2312 GB2312
20 ja EUC-JP
21 EOF
23 case "$cpu_company_system" in
24 *-*-hpux*)
25 echo "japanese Shift_JIS"
28 echo "japanese EUC-JP"
29 esac
31 if [ "x$utf8_name" != xUTF-8 ] ; then
32 echo "UTF-8 $utf8_name"
35 exit 0