summaryrefslogtreecommitdiff
path: root/external/mythes
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-27 09:33:58 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-27 09:36:18 +0100
commit0751477a375e0b6bb82c5aa47c9e666d6dc2ba8c (patch)
tree90506651954ff1fc68186cb89e5a1121221ff37c /external/mythes
parentce05c5e4b0b0b9e910b4d90013a993395dd9ed8c (diff)
upgrade mythes to 1.2.4
Change-Id: I79b658fc737ef3dd65039c3b43705505a45fb1fd
Diffstat (limited to 'external/mythes')
-rw-r--r--external/mythes/UnpackedTarball_mythes.mk2
-rw-r--r--external/mythes/mythes-1.2.0-android.patch20
-rw-r--r--external/mythes/mythes-ssizet.patch20
3 files changed, 0 insertions, 42 deletions
diff --git a/external/mythes/UnpackedTarball_mythes.mk b/external/mythes/UnpackedTarball_mythes.mk
index 7571c34e3a37..42e6524b8323 100644
--- a/external/mythes/UnpackedTarball_mythes.mk
+++ b/external/mythes/UnpackedTarball_mythes.mk
@@ -13,8 +13,6 @@ $(eval $(call gb_UnpackedTarball_set_tarball,mythes,$(MYTHES_TARBALL)))
$(eval $(call gb_UnpackedTarball_add_patches,mythes,\
external/mythes/mythes-1.2.0-vanilla-th-gen-idx.patch \
- external/mythes/mythes-1.2.0-android.patch \
- external/mythes/mythes-ssizet.patch \
external/mythes/mythes-fdo48017-wfopen.patch \
))
diff --git a/external/mythes/mythes-1.2.0-android.patch b/external/mythes/mythes-1.2.0-android.patch
deleted file mode 100644
index 9b5293876281..000000000000
--- a/external/mythes/mythes-1.2.0-android.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- misc/mythes-1.2.3/config.sub 2010-02-27 16:52:52.000000000 +0100
-+++ misc/build/mythes-1.2.3/config.sub 2011-09-26 23:39:04.000000000 +0200
-@@ -123,7 +123,7 @@
- # Here we must recognize all the valid KERNEL-OS combinations.
- maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
- case $maybe_os in
-- nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
-+ nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
- uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
- kopensolaris*-gnu* | \
- storm-chaos* | os2-emx* | rtmk-nova*)
-@@ -1294,7 +1294,7 @@
- | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
- | -chorusos* | -chorusrdb* | -cegcc* \
- | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
-- | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
-+ | -mingw32* | -linux-gnu* | -linux-androideabi* | -linux-newlib* | -linux-uclibc* \
- | -uxpv* | -beos* | -mpeix* | -udk* \
- | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
- | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
diff --git a/external/mythes/mythes-ssizet.patch b/external/mythes/mythes-ssizet.patch
deleted file mode 100644
index 25d95165d8f2..000000000000
--- a/external/mythes/mythes-ssizet.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- misc/mythes-1.2.3/mythes.cxx 2012-06-29 13:16:55.812939142 +0100
-+++ misc/build/mythes-1.2.3/mythes.cxx 2012-06-29 13:17:21.159198507 +0100
-@@ -48,7 +48,7 @@
- len = readLine(pifile,wrd,MAX_WD_LEN);
- int idxsz = atoi(wrd);
-
-- if (idxsz <= 0 || idxsz > std::numeric_limits<ssize_t>::max() / sizeof(sizeof(char*))) {
-+ if (idxsz <= 0 || idxsz > std::numeric_limits<int>::max() / sizeof(sizeof(char*))) {
- fprintf(stderr,"Error - bad index %d\n", idxsz);
- fclose(pifile);
- return 0;
-@@ -176,7 +176,7 @@
- return 0;
- }
- int nmeanings = atoi(buf+np+1);
-- if (nmeanings < 0 || nmeanings > std::numeric_limits<ssize_t>::max() / sizeof(mentry))
-+ if (nmeanings < 0 || nmeanings > std::numeric_limits<int>::max() / sizeof(mentry))
- nmeanings = 0;
- *pme = (mentry*)(nmeanings ? malloc(nmeanings * sizeof(mentry)) : NULL);
- if (!(*pme)) {