diff options
author | Mamoru Komachi <usata@gentoo.org> | 2005-02-05 07:19:04 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2005-02-05 07:19:04 +0000 |
commit | 05dd28012107019b981c5747fbbcb82aa0493034 (patch) | |
tree | 96f20a473053151f0e43983a970a7e0f262557ff /app-i18n/anthy/files | |
parent | Version bumped. This closes bug #80570. (diff) | |
download | gentoo-2-05dd28012107019b981c5747fbbcb82aa0493034.tar.gz gentoo-2-05dd28012107019b981c5747fbbcb82aa0493034.tar.bz2 gentoo-2-05dd28012107019b981c5747fbbcb82aa0493034.zip |
Fixed incorrect conversion problem; bug #73977.
(Portage version: 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 |