mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
8b682b9907
* iconvdata/gen-8bit-gap-1.sh: Update for new charmap format. * iconvdata/gen-8bit-gap.sh: Likewise. * iconvdata/gen-8bit.sh: Likewise. * iconv/gconv_open.c (__gconv_open): Move comment to correct position. * locale/programs/ld-collate.c (collate_read): Don't actually read the copy locale if we are ignoring the content. * sunrpc/xdr_rec.c (set_input_fragment): Fix PR libc/1549, patch from Jens Moeller <jens.moeller@waii.com>.
16 lines
525 B
Bash
16 lines
525 B
Bash
#! /bin/sh
|
|
echo "static const uint32_t to_ucs4[256] = {"
|
|
sed -ne '/^[^[:space:]]*[[:space:]]*.x00/d' \
|
|
-e 's/^<U\(....\)>[[:space:]]*.x\(..\).*/ [0x\2] = 0x\1,/p' \
|
|
"$@" | sort -u
|
|
echo "};"
|
|
echo "static const struct gap from_idx[] = {"
|
|
sed -ne 's/^<U\(....\).*/\1/p' \
|
|
"$@" | sort -u | $AWK -f gap.awk
|
|
echo " { start: 0xffff, end: 0xffff, idx: 0 }"
|
|
echo "};"
|
|
echo "static const char from_ucs4[] = {"
|
|
sed -ne 's/^<U\(....\)>[[:space:]]*.x\(..\).*/\1 \2/p' \
|
|
"$@" | sort -u | $AWK -f gaptab.awk
|
|
echo "};"
|