diff options
author | phk <phk@FreeBSD.org> | 1998-08-15 12:51:49 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1998-08-15 12:51:49 +0000 |
commit | 3d8fbb04c761c00bccb964d909ff50cf5fff860b (patch) | |
tree | 1e0987e30fd58d847c0b2c836dbc854557df52cc /share/mklocale/Makefile | |
parent | f58f152acd4a5f6f90f051ed63fa84bc4cbd9e18 (diff) | |
download | FreeBSD-src-3d8fbb04c761c00bccb964d909ff50cf5fff860b.zip FreeBSD-src-3d8fbb04c761c00bccb964d909ff50cf5fff860b.tar.gz |
I have added the support for BIG5 encoding into libc/libxpg4/mklocale.
the diff is attached below. This is done on the 3.0 source-tree.
I have test this on 2.2-stable before, but I don't have a 3.0 machine
right now.
This patch is mainly to make libc support BIG5 encoding, thus add
zh_TW.BIG5 locale to 3.0.
Submitted by: Chen Hsiung Chan <frankch@waru.life.nthu.edu.tw>
Diffstat (limited to 'share/mklocale/Makefile')
-rw-r--r-- | share/mklocale/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/share/mklocale/Makefile b/share/mklocale/Makefile index ba93e1e..e2481e4 100644 --- a/share/mklocale/Makefile +++ b/share/mklocale/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.14 1998/08/07 17:07:12 ache Exp $ +# $Id: Makefile,v 1.15 1998/08/10 09:49:42 phk Exp $ NOMAN=YES CLEANFILES+= ${LOCALES:S/$/.out/g} @@ -11,7 +11,8 @@ LOCALES= ja_JP.EUC \ lt_LN.ISO_8859-2 \ ru_SU.CP866 \ ru_SU.KOI8-R \ - zh_CN.EUC + zh_CN.EUC \ + zh_TW.BIG5 LOCALEDIR= ${DESTDIR}/usr/share/locale |