summaryrefslogtreecommitdiff
path: root/www/firefox31/patches/patch-memory_mozalloc_mozalloc__abort.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'www/firefox31/patches/patch-memory_mozalloc_mozalloc__abort.cpp')
-rw-r--r--www/firefox31/patches/patch-memory_mozalloc_mozalloc__abort.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/www/firefox31/patches/patch-memory_mozalloc_mozalloc__abort.cpp b/www/firefox31/patches/patch-memory_mozalloc_mozalloc__abort.cpp
new file mode 100644
index 00000000000..e185bff1c0c
--- /dev/null
+++ b/www/firefox31/patches/patch-memory_mozalloc_mozalloc__abort.cpp
@@ -0,0 +1,16 @@
+$NetBSD: patch-memory_mozalloc_mozalloc__abort.cpp,v 1.1 2014/11/03 12:18:32 ryoon Exp $
+
+--- memory/mozalloc/mozalloc_abort.cpp.orig 2013-05-11 19:19:46.000000000 +0000
++++ memory/mozalloc/mozalloc_abort.cpp
+@@ -34,7 +34,11 @@ mozalloc_abort(const char* const msg)
+ // Define abort() here, so that it is used instead of the system abort(). This
+ // lets us control the behavior when aborting, in order to get better results
+ // on *NIX platforms. See mozalloc_abort for details.
++#if defined(SOLARIS)
++void std::abort(void)
++#else
+ void abort(void)
++#endif
+ {
+ mozalloc_abort("Redirecting call to abort() to mozalloc_abort\n");
+ }