aboutsummaryrefslogtreecommitdiffstats
path: root/www/firefox-esr
diff options
context:
space:
mode:
authorflo <flo@FreeBSD.org>2012-10-12 17:08:22 +0800
committerflo <flo@FreeBSD.org>2012-10-12 17:08:22 +0800
commit88c83a21f0f4d4c20d84a51edc78b5e763968ad8 (patch)
treed13440df3b51c11bdd9e30aeda2a15f220cc636c /www/firefox-esr
parentc469881b49b56bad014e4abc5b284442eeb31508 (diff)
downloadfreebsd-ports-gnome-88c83a21f0f4d4c20d84a51edc78b5e763968ad8.tar.gz
freebsd-ports-gnome-88c83a21f0f4d4c20d84a51edc78b5e763968ad8.tar.zst
freebsd-ports-gnome-88c83a21f0f4d4c20d84a51edc78b5e763968ad8.zip
- 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
Diffstat (limited to 'www/firefox-esr')
-rw-r--r--www/firefox-esr/Makefile2
-rw-r--r--www/firefox-esr/distinfo4
-rw-r--r--www/firefox-esr/files/patch-bug54324125
3 files changed, 3 insertions, 28 deletions
diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile
index 3a01bc177eb9..c5c5c181581a 100644
--- a/www/firefox-esr/Makefile
+++ b/www/firefox-esr/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= firefox
-DISTVERSION= 10.0.8
+DISTVERSION= 10.0.9
PORTEPOCH= 1
CATEGORIES= www ipv6
MASTER_SITES= ${MASTER_SITE_MOZILLA}
diff --git a/www/firefox-esr/distinfo b/www/firefox-esr/distinfo
index 83c24e982d11..eff211db49e5 100644
--- a/www/firefox-esr/distinfo
+++ b/www/firefox-esr/distinfo
@@ -1,2 +1,2 @@
-SHA256 (firefox-10.0.8esr.source.tar.bz2) = e908c51761b0143b9f5e8b045b8c91b624357eee8786cd861028e1df60da52f9
-SIZE (firefox-10.0.8esr.source.tar.bz2) = 75620783
+SHA256 (firefox-10.0.9esr.source.tar.bz2) = 7719499f1b2610b497ed0ebbccd3fc84d2b331fed2ccd447aeb5e6b5b183155c
+SIZE (firefox-10.0.9esr.source.tar.bz2) = 75634700
diff --git a/www/firefox-esr/files/patch-bug543241 b/www/firefox-esr/files/patch-bug543241
deleted file mode 100644
index 7cc0736c14b6..000000000000
--- a/www/firefox-esr/files/patch-bug543241
+++ /dev/null
@@ -1,25 +0,0 @@
---- ./xpcom/threads/nsThreadManager.cpp.orig 2011-08-25 02:37:45.000000000 +0200
-+++ ./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
-@@ -89,6 +89,11 @@
- nsresult
- nsThreadManager::Init()
- {
-+#if defined(NS_TLS) && (__FreeBSD_version < 802513 \
-+ || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900045))
-+ if (!gTLSThreadID)
-+ gTLSThreadID = mozilla::threads::Generic;
-+#endif
- if (!mThreadsByPRThread.Init())
- return NS_ERROR_OUT_OF_MEMORY;
-