diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-09-11 12:14:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-09-11 12:14:37 +0000 |
commit | 04795ad9025b5f7891eb746fa6f29d1251d2c0b5 (patch) | |
tree | 40686d38e2842b7537b699dfb0655b0dfdfd6881 /iconvdata/Makefile | |
parent | 5e0889da396b35ef7d57d43dca6f09899e4c8d66 (diff) | |
download | glibc-04795ad9025b5f7891eb746fa6f29d1251d2c0b5.tar.gz glibc-04795ad9025b5f7891eb746fa6f29d1251d2c0b5.tar.xz glibc-04795ad9025b5f7891eb746fa6f29d1251d2c0b5.zip |
Update.
1998-09-11 Ulrich Drepper <drepper@cygnus.com> * resolv/res_init.c (res_init): Handle resolv.conf file with only one nameserver correctly. Patch by HJ Lu. * iconvdata/Makefile (modules): Add IEC_P27-1, BALTIC, ASMO_449, and ANSI_X3.110. Define *-routines variables for new modules. (distribute): Add .c files for new modules. (awk-generated-headers): Add iec_p27-1.h, baltic.h, and asmo_449.h. Add rules for hedaer generation. * iconvdata/gconv-modules: Add entries for new modules. Pretty print. * iconvdata/ansi_x3.110.c: New file. * iconvdata/asmo_449.c: New file. * iconvdata/baltic.c: New file. * iconvdata/iec_p27-1.c: New file. * iconvdata/t61.c (from_ucs4): Correct 0x23, 0x24, 0x80, and 0x81 entries. Convert U02dc correctly. * math/atest-exp.c: Add parentheses to avoid gcc warnings. * math/atest-exp2.c: Likewise. * math/atest-sincos.c: Likewise. * posix/getopt.h: Don't define non-POSIX stuff unless _GNU_SOURCE is defined. 1998-09-11 10:51 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * string/strcoll.c: Optimize a few expressions. * string/strxfrm.c: Likewise.
Diffstat (limited to 'iconvdata/Makefile')
-rw-r--r-- | iconvdata/Makefile | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/iconvdata/Makefile b/iconvdata/Makefile index a300c10170..82b4c62c58 100644 --- a/iconvdata/Makefile +++ b/iconvdata/Makefile @@ -37,7 +37,8 @@ modules := ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 \ IBM437 IBM850 IBM851 IBM852 IBM855 IBM857 IBM860 IBM861 \ IBM862 IBM863 IBM864 IBM865 IBM868 IBM869 IBM875 IBM880 \ IBM918 IBM1004 IBM1026 CP1250 CP1251 CP1252 CP1253 CP1254 \ - CP1255 CP1256 CP1257 ISO-2022-JP MACINTOSH + CP1255 CP1256 CP1257 ISO-2022-JP MACINTOSH IEC_P27-1 BALTIC \ + ASMO_449 ANSI_X3.110 modules.so := $(addsuffix .so, $(modules)) @@ -143,6 +144,10 @@ EUC-TW-routines := euctw ISO-2022-JP-routines := iso-2022-jp ISO-2022-KR-routines := iso-2022-kr MACINTOSH-routines := macintosh +IEC_P27-1-routines := iec_p27-1 +BALTIC-routines := baltic +ASMO_449-routines := asmo_449 +ANSI_X3.110-routines := ansi_x3.110 libJIS-routines := jis0201 jis0208 jis0212 libKSC-routines := ksc5601 libGB-routines := gb2312 @@ -195,7 +200,8 @@ distribute := 8bit-generic.c 8bit-gap.c gap.awk gaptab.awk gconv-modules \ ibm1004.c ibm1026.c ibm1047.c cp1250.c cp1251.c cp1252.c \ cp1253.c cp1254.c cp1255.c cp1256.c cp1257.c cp874.c cp874.h \ cp737.c cp737.h cp775.c cp775.h iso-2022-jp.c iso-2022-kr.c \ - gen-8bit.sh gen-8bit-gap.sh gen-8bit-gap-1.sh macintosh.c + gen-8bit.sh gen-8bit-gap.sh gen-8bit-gap-1.sh macintosh.c \ + iec_p27-1.c baltic.c asmo_449.c ansi_x3.110.c # We build the transformation modules only when we build shared libs. ifeq (yes,$(build-shared)) @@ -261,7 +267,8 @@ awk-generated-headers := koi8-r.h latin-greek.h latin-greek-1.h \ ibm1026.h cp1250.h cp1251.h cp1252.h cp1253.h \ cp1254.h cp1255.h cp1256.h cp1257.h \ iso8859-5.h iso8859-7.h iso8859-8.h \ - iso8859-10.h iso8859-7jp.h macintosh.h + iso8859-10.h iso8859-7jp.h macintosh.h \ + iec_p27-1.h baltic.h asmo_449.h generated = $(sed-generated-headers) $(sed-generated-headers:%.h=%.stmp) \ $(awk-generated-headers) $(awk-generated-headers:%.h=%.stmp) \ @@ -461,6 +468,12 @@ $(objpfx)cp1257.stmp: ../localedata/charmaps/CP1257 gen-8bit-gap.sh $(objpfx)macintosh.stmp: ../localedata/charmaps/MACINTOSH gen-8bit-gap.sh $(generate-8bit-gap-table) +$(objpfx)iec_p27-1.stmp: ../localedata/charmaps/IEC_P27-1 gen-8bit-gap.sh + $(generate-8bit-gap-table) +$(objpfx)baltic.stmp: ../localedata/charmaps/BALTIC gen-8bit-gap.sh + $(generate-8bit-gap-table) +$(objpfx)asmo_449.stmp: ../localedata/charmaps/ASMO_449 gen-8bit-gap.sh + $(generate-8bit-gap-table) headers: $(addprefix $(objpfx),\ $(sed-generated-headers) $(awk-generated-headers)) |