diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2017-02-02 14:12:35 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2017-02-02 14:12:35 +0200 |
commit | 53dd2da257fb5904b087b97dd9c2867390d309c1 (patch) | |
tree | ec259d5c315f812f92e4bc3c5f5baac1cedd46b7 | |
parent | cb695ae993a38a0600a907154cfcc71285a9b9ef (diff) | |
download | postgresql-53dd2da257fb5904b087b97dd9c2867390d309c1.tar.gz postgresql-53dd2da257fb5904b087b97dd9c2867390d309c1.zip |
Add KOI8-U map files to Makefile.
These were left out by mistake back when support for KOI8-U encoding was
added.
Extracted from Kyotaro Horiguchi's larger patch.
-rw-r--r-- | src/backend/utils/mb/Unicode/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/utils/mb/Unicode/Makefile b/src/backend/utils/mb/Unicode/Makefile index d9ea1af5272..10708b3e273 100644 --- a/src/backend/utils/mb/Unicode/Makefile +++ b/src/backend/utils/mb/Unicode/Makefile @@ -40,7 +40,8 @@ WINMAPS = win866_to_utf8.map utf8_to_win866.map \ GENERICMAPS = $(ISO8859MAPS) $(WINMAPS) \ gbk_to_utf8.map utf8_to_gbk.map \ - koi8r_to_utf8.map utf8_to_koi8r.map + koi8r_to_utf8.map utf8_to_koi8r.map \ + koi8u_to_utf8.map utf8_to_koi8u.map SPECIALMAPS = euc_cn_to_utf8.map utf8_to_euc_cn.map \ euc_jp_to_utf8.map utf8_to_euc_jp.map \ |