diff options
author | Florian Smeets <flo@FreeBSD.org> | 2012-10-12 09:08:22 +0000 |
---|---|---|
committer | Florian Smeets <flo@FreeBSD.org> | 2012-10-12 09:08:22 +0000 |
commit | 58df8d2b316ead39b9a70738e7b9ee4cf0ae55e4 (patch) | |
tree | d13440df3b51c11bdd9e30aeda2a15f220cc636c /mail/thunderbird/files/patch-bug543241 | |
parent | - Avoid creating unused empty directories when installing tcl-modules (diff) |
- update {thunderbird,firefox}-esr* and libxul to 10.0.9
- use bundled jemalloc since 7.2 [1]
- avoid thread-local variables before 8.3, 9.1, 10.0, to avoid crashes [2]
- bump PORTREVISION on mail/thunderbird and www/firefox for the TLS fixes
Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392
Reported by: angelv <angelvg@gmail.com>, Hanno Krusken<ix260@yahoo.co.uk> [2]
Reference: http://svnweb.freebsd.org/changeset/base/225582 [2]
Submitted by: Jan Beich <jbeich@tormail.org> [1], [2]
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=305765
Diffstat (limited to 'mail/thunderbird/files/patch-bug543241')
-rw-r--r-- | mail/thunderbird/files/patch-bug543241 | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/mail/thunderbird/files/patch-bug543241 b/mail/thunderbird/files/patch-bug543241 deleted file mode 100644 index 2aac3bb44466..000000000000 --- a/mail/thunderbird/files/patch-bug543241 +++ /dev/null @@ -1,25 +0,0 @@ ---- ./mozilla/xpcom/threads/nsThreadManager.cpp.orig 2011-08-25 02:37:45.000000000 +0200 -+++ ./mozilla/xpcom/threads/nsThreadManager.cpp 2011-08-28 17:14:14.000000000 +0200 -@@ -12,6 +12,10 @@ - #include "nsAutoPtr.h" - #include "nsCycleCollectorUtils.h" - -+#if defined(__FreeBSD__) -+#include <osreldate.h> -+#endif -+ - using namespace mozilla; - - #ifdef XP_WIN -@@ -57,6 +57,11 @@ - nsresult - nsThreadManager::Init() - { -+#if defined(NS_TLS) && (__FreeBSD_version < 802513 \ -+ || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900045)) -+ if (!gTLSThreadID) -+ gTLSThreadID = mozilla::threads::Generic; -+#endif - mThreadsByPRThread.Init(); - - if (PR_NewThreadPrivateIndex(&mCurThreadIndex, ReleaseObject) == PR_FAILURE) |