summaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug778056
diff options
context:
space:
mode:
authorFlorian Smeets <flo@FreeBSD.org>2012-11-20 23:01:15 +0000
committerFlorian Smeets <flo@FreeBSD.org>2012-11-20 23:01:15 +0000
commit9aafe503d08e2766f5343cca1c13e96a47c6bd4c (patch)
treed56a366dfc71562e65a02f0224eed5e9c21419cd /www/firefox/files/patch-bug778056
parent- New port: octave-forge-cgi. (diff)
- Update firefox and thunderbird to 17.0
- Update seamonkey to 2.14 - Update ESR ports and libxul to 10.0.11 - support more h264 codecs when using GSTREAMER with YouTube - Unbreak firefox-esr, thunderbird-esr and libxul on head >= 1000024 [1] - Buildsystem is not python 3 aware, use python up to 2.7 [2] PR: ports/173679 [1] Submitted by: swills [1], demon [2] In collaboration with: Jan Beich <jbeich@tormail.org> Security: d23119df-335d-11e2-b64c-c8600054b392 Approved by: portmgr (beat) Feature safe: yes
Diffstat (limited to 'www/firefox/files/patch-bug778056')
-rw-r--r--www/firefox/files/patch-bug77805621
1 files changed, 0 insertions, 21 deletions
diff --git a/www/firefox/files/patch-bug778056 b/www/firefox/files/patch-bug778056
deleted file mode 100644
index 9515b967764e..000000000000
--- a/www/firefox/files/patch-bug778056
+++ /dev/null
@@ -1,21 +0,0 @@
---- memory/mozalloc/mozalloc.cpp~
-+++ memory/mozalloc/mozalloc.cpp
-@@ -19,6 +19,9 @@
- #if defined(XP_UNIX)
- # include <unistd.h> // for valloc on *BSD
- #endif //if defined(XP_UNIX)
-+#if defined(__FreeBSD__)
-+# include <malloc_np.h> // for malloc_usable_size
-+#endif // if defined(__FreeBSD__)
-
- #if defined(XP_WIN) || (defined(XP_OS2) && defined(__declspec))
- # define MOZALLOC_EXPORT __declspec(dllexport)
-@@ -210,7 +213,7 @@ moz_malloc_usable_size(void *ptr)
-
- #if defined(XP_MACOSX)
- return malloc_size(ptr);
--#elif defined(MOZ_MEMORY) || (defined(XP_LINUX) && !defined(ANDROID))
-+#elif defined(MOZ_MEMORY) || (defined(XP_LINUX) && !defined(ANDROID)) || defined(__FreeBSD__)
- // Android bionic libc doesn't have malloc_usable_size.
- return malloc_usable_size(ptr);
- #elif defined(XP_WIN)