diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-09-13 09:12:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-09-13 09:12:02 +0000 |
commit | c0d99958f9f329400d25040b3d422fa937522b65 (patch) | |
tree | 2c9b3c78d4ee07ffb167b2112e89eff799dc509f /iconvdata/Makefile | |
parent | 875fc7830131521c46413a69543d962b5337d6ca (diff) | |
download | glibc-c0d99958f9f329400d25040b3d422fa937522b65.tar glibc-c0d99958f9f329400d25040b3d422fa937522b65.tar.gz glibc-c0d99958f9f329400d25040b3d422fa937522b65.tar.bz2 glibc-c0d99958f9f329400d25040b3d422fa937522b65.zip |
Update.
* iconvdata/Makefile (modules): Add ISO-2022-CN-EXT.
(distribute): Add iso-2022-cn-ext.c.
Add definitions to compile the new module.
* iconvdata/gconv-modules: Add entries for ISO-2022-CN-EXT.
* iconvdata/iso-2022-cn-ext.c: New file.
* iconvdata/iso-ir-165.h (isoir165_to_ucs4): Renamed from
ucs4_from_isoir165. Increment input pointer if successful.
Diffstat (limited to 'iconvdata/Makefile')
-rw-r--r-- | iconvdata/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/iconvdata/Makefile b/iconvdata/Makefile index 44e3f8f531..d6717a4c89 100644 --- a/iconvdata/Makefile +++ b/iconvdata/Makefile @@ -46,7 +46,7 @@ modules := ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 \ ISO_5428 ISO_10367-BOX MAC-IS MAC-UK NATS-DANO NATS-SEFI \ SAMI-WS2 ISO-IR-197 TIS-620 KOI8-U GBK ISIRI-3342 GBGBK \ ISO-2022-CN libISOIR165 UTF-16 UNICODE UTF-7 BIG5HKSCS \ - GB18030 + GB18030 ISO-2022-CN-EXT modules.so := $(addsuffix .so, $(modules)) @@ -82,6 +82,9 @@ LDFLAGS-ISO-2022-KR.so = -Wl,-rpath,'$$ORIGIN' $(objpfx)ISO-2022-KR.so: $(objpfx)libKSC.so LDFLAGS-ISO-2022-CN.so = -Wl,-rpath,'$$ORIGIN' $(objpfx)ISO-2022-CN.so: $(objpfx)libGB.so $(objpfx)libCNS.so +LDFLAGS-ISO-2022-CN-EXT.so = -Wl,-rpath,'$$ORIGIN' +$(objpfx)ISO-2022-CN-EXT.so: $(objpfx)libGB.so $(objpfx)libCNS.so \ + $(objpfx)libISOIR165.so LDFLAGS-libJIS.so = -Wl,-soname,$(@F) LDFLAGS-libKSC.so = -Wl,-soname,$(@F) @@ -127,7 +130,7 @@ distribute := gconv-modules extra-module.mk gap.awk gaptab.awk \ t.61.c uhc.c sami-ws2.c iso-ir-197.c tis-620.c koi8-u.c \ isiri-3342.c isiri-3342.h gbgbk.c iso-2022-cn.c cns11643l2.h \ iso8859-16.c utf-16.c unicode.c utf-7.c big5hkscs.c \ - iso-ir-165.c iso-ir-165.h gb18030.c + iso-ir-165.c iso-ir-165.h gb18030.c iso-2022-cn-ext.c # We build the transformation modules only when we build shared libs. ifeq (yes,$(build-shared)) |