aboutsummaryrefslogtreecommitdiffstats
path: root/testing/seamonkey/fix-hunspell.patch
diff options
context:
space:
mode:
authorMarc Vertes <mvertes@free.fr>2017-02-12 20:45:33 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2017-02-13 07:49:27 +0000
commitd629db1038ee095d9f7ce5893d4b9b5f6468c106 (patch)
tree52967e285fdf61f2640ccacffdc8448f8d7234bd /testing/seamonkey/fix-hunspell.patch
parent5c06a4980ea3a26d415490e798122c7a2d6ab7c3 (diff)
downloadaports-d629db1038ee095d9f7ce5893d4b9b5f6468c106.tar.bz2
aports-d629db1038ee095d9f7ce5893d4b9b5f6468c106.tar.xz
testing/seamonkey: upgrade to version 2.46
Diffstat (limited to 'testing/seamonkey/fix-hunspell.patch')
-rw-r--r--testing/seamonkey/fix-hunspell.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/seamonkey/fix-hunspell.patch b/testing/seamonkey/fix-hunspell.patch
new file mode 100644
index 0000000000..9eb4284e59
--- /dev/null
+++ b/testing/seamonkey/fix-hunspell.patch
@@ -0,0 +1,16 @@
+--- seamonkey-2.46/mozilla/extensions/spellcheck/hunspell/glue/hunspell_alloc_hooks.h.orig
++++ seamonkey-2.46/mozilla/extensions/spellcheck/hunspell/glue/hunspell_alloc_hooks.h
+@@ -50,9 +50,9 @@
+ #include "mozilla/mozalloc.h"
+ #include "mozHunspellAllocator.h"
+
+-#define malloc(size) HunspellAllocator::CountingMalloc(size)
+-#define calloc(count, size) HunspellAllocator::CountingCalloc(count, size)
+-#define free(ptr) HunspellAllocator::CountingFree(ptr)
+-#define realloc(ptr, size) HunspellAllocator::CountingRealloc(ptr, size)
++//#define malloc(size) HunspellAllocator::CountingMalloc(size)
++//#define calloc(count, size) HunspellAllocator::CountingCalloc(count, size)
++//#define free(ptr) HunspellAllocator::CountingFree(ptr)
++//#define realloc(ptr, size) HunspellAllocator::CountingRealloc(ptr, size)
+
+ #endif