summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-i18n/anthy/files')
-rw-r--r--app-i18n/anthy/files/anthy-7500b-asneeded.patch9
-rw-r--r--app-i18n/anthy/files/anthy-7900-asneeded.diff11
-rw-r--r--app-i18n/anthy/files/anthy-mkdic-gcc34.patch22
3 files changed, 0 insertions, 42 deletions
diff --git a/app-i18n/anthy/files/anthy-7500b-asneeded.patch b/app-i18n/anthy/files/anthy-7500b-asneeded.patch
deleted file mode 100644
index 5b53f8f99c28..000000000000
--- a/app-i18n/anthy/files/anthy-7500b-asneeded.patch
+++ /dev/null
@@ -1,9 +0,0 @@
-Index: anthy-7500b/src-splitter/Makefile.am
-===================================================================
---- anthy-7500b.orig/src-splitter/Makefile.am
-+++ anthy-7500b/src-splitter/Makefile.am
-@@ -8,3 +8,4 @@ noinst_LTLIBRARIES = libsplit.la
- libsplit_la_SOURCES = wordlist.c metaword.c depgraph.c\
- splitter.c evalborder.c compose.c\
- wordborder.h hmm.c segclass.c transition.h
-+libsplit_la_LIBADD = ../src-worddic/libanthydic.la
diff --git a/app-i18n/anthy/files/anthy-7900-asneeded.diff b/app-i18n/anthy/files/anthy-7900-asneeded.diff
deleted file mode 100644
index 30bf92fc5597..000000000000
--- a/app-i18n/anthy/files/anthy-7900-asneeded.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- src-main/Makefile.am.old 2006-05-13 11:29:05.000000000 +0200
-+++ src-main/Makefile.am 2006-09-01 09:52:04.000000000 +0200
-@@ -4,7 +4,7 @@
-
- lib_LTLIBRARIES = libanthy.la
-
--libanthy_la_LIBADD = ../src-splitter/libsplit.la ../src-ordering/libordering.la -lm
-+libanthy_la_LIBADD = ../src-splitter/libsplit.la ../src-ordering/libordering.la ../src-diclib/libdiclib.la ../src-worddic/libanthydic.la -lm
- libanthy_la_LDFLAGS = -version-info 1:0:1
-
- libanthy_la_SOURCES = \
diff --git a/app-i18n/anthy/files/anthy-mkdic-gcc34.patch b/app-i18n/anthy/files/anthy-mkdic-gcc34.patch
deleted file mode 100644
index b18c86893a94..000000000000
--- a/app-i18n/anthy/files/anthy-mkdic-gcc34.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- 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