aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2002-06-14 03:30:56 +0000
committerTatsuo Ishii <ishii@postgresql.org>2002-06-14 03:30:56 +0000
commit15378a53f807f9b60b3933cfa3c9ae243dc85442 (patch)
treec13d917749e241826f0e27c0eeeb86427db243c3 /src
parentb1313e3474a8444ba774ca77136cc64faa54d6a2 (diff)
downloadpostgresql-15378a53f807f9b60b3933cfa3c9ae243dc85442.tar.gz
postgresql-15378a53f807f9b60b3933cfa3c9ae243dc85442.zip
Add support for GB18030
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/mb/Unicode/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/backend/utils/mb/Unicode/Makefile b/src/backend/utils/mb/Unicode/Makefile
index 6d9185b0381..45259999725 100644
--- a/src/backend/utils/mb/Unicode/Makefile
+++ b/src/backend/utils/mb/Unicode/Makefile
@@ -4,7 +4,7 @@
#
# Copyright 2001 by PostgreSQL Global Development Group
#
-# $Header: /cvsroot/pgsql/src/backend/utils/mb/Unicode/Makefile,v 1.3 2001/09/06 04:57:29 ishii Exp $
+# $Header: /cvsroot/pgsql/src/backend/utils/mb/Unicode/Makefile,v 1.4 2002/06/14 03:30:56 ishii Exp $
#
#-------------------------------------------------------------------------
@@ -26,7 +26,7 @@ MAPS= $(ISO8859MAPS) $(CYRILLICMAPS)\
euc_kr_to_utf8.map euc_tw_to_utf8.map sjis_to_utf8.map \
utf8_to_big5.map utf8_to_euc_cn.map utf8_to_euc_jp.map \
utf8_to_euc_kr.map utf8_to_euc_tw.map utf8_to_iso8859_2.map \
- utf8_to_sjis.map
+ utf8_to_sjis.map gb18030_to_utf8.map utf8_to_gb18030.map
ISO8859TEXTS= 8859-2.TXT 8859-3.TXT 8859-4.TXT 8859-5.TXT
CYRILLICTEXTS=cp866.txt cp1251.txt koi8-r.txt
@@ -34,7 +34,7 @@ CYRILLICTEXTS=cp866.txt cp1251.txt koi8-r.txt
TEXTS=$(ISO8859TEXTS) $(CYRILLICTEXTS) \
BIG5.TXT CNS11643.TXT GB2312.TXT \
JIS0201.TXT JIS0208.TXT JIS0212.TXT \
- OLD5601.TXT SHIFTJIS.TXT
+ OLD5601.TXT SHIFTJIS.TXT ISO10646-GB18030.TXT
all: $(MAPS)
@@ -61,6 +61,8 @@ sjis_to_utf8.map utf8_to_sjis.map : SHIFTJIS.TXT
big5_to_utf8.map utf8_to_big5.map : BIG5.TXT
./UCS_to_BIG5.pl
+gb18030_to_utf8.map utf8_to_gb18030.map : ISO10646-GB18030.TXT
+ ./UCS_to_GB18030.pl
clean:
rm -f $(MAPS)