diff options
author | 2005-02-05 07:19:04 +0000 | |
---|---|---|
committer | 2005-02-05 07:19:04 +0000 | |
commit | 5a106b76624e626d94300c6bd5987c4960fa71e6 (patch) | |
tree | ec3f54fe77b400120cc8d912d669a0b398553399 /app-i18n/anthy/files | |
parent | Version bumped. This closes bug #80570. (diff) | |
download | historical-5a106b76624e626d94300c6bd5987c4960fa71e6.tar.gz historical-5a106b76624e626d94300c6bd5987c4960fa71e6.tar.bz2 historical-5a106b76624e626d94300c6bd5987c4960fa71e6.zip |
Fixed incorrect conversion problem; bug #73977.
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'app-i18n/anthy/files')
-rw-r--r-- | app-i18n/anthy/files/anthy-mkdic-gcc34.patch | 22 | ||||
-rw-r--r-- | app-i18n/anthy/files/digest-anthy-5900-r1 | 1 |
2 files changed, 23 insertions, 0 deletions
diff --git a/app-i18n/anthy/files/anthy-mkdic-gcc34.patch b/app-i18n/anthy/files/anthy-mkdic-gcc34.patch new file mode 100644 index 000000000000..b18c86893a94 --- /dev/null +++ b/app-i18n/anthy/files/anthy-mkdic-gcc34.patch @@ -0,0 +1,22 @@ +--- mkanthydic/mkdic.c.orig 2004-08-29 04:54:48.000000000 +0900 ++++ mkanthydic/mkdic.c 2004-11-27 01:06:54.930846856 +0900 +@@ -455,7 +455,8 @@ + (strcmp(ye->entries[i-1].word, we->word) || + strcmp(ye->entries[i-1].wt, we->wt) || + ye->entries[i-1].freq != we->freq)) { +- count += fprintf(yomi_entry_out, "%s", we->wt); ++ fprintf(yomi_entry_out, "%s", we->wt); ++ count += strlen(we->wt); + if (we->freq > 1) { + count += fprintf(yomi_entry_out, "*%d", we->freq); + } +@@ -464,7 +465,8 @@ + /* 単語を出力する場所がこの単語のid */ + we->offset = count + ye->offset; + /* 単語を出力する */ +- count += fprintf(yomi_entry_out, "%s", we->word); ++ fprintf(yomi_entry_out, "%s", we->word); ++ count += strlen(we->word); + } + + fputc(0, yomi_entry_out);
\ No newline at end of file diff --git a/app-i18n/anthy/files/digest-anthy-5900-r1 b/app-i18n/anthy/files/digest-anthy-5900-r1 new file mode 100644 index 000000000000..dbdefd0061f4 --- /dev/null +++ b/app-i18n/anthy/files/digest-anthy-5900-r1 @@ -0,0 +1 @@ +MD5 7f1a250c8b88b3792855fb43131ce8d3 anthy-5900.tar.gz 1566783 |