diff options
Diffstat (limited to 'www/libxul')
-rw-r--r-- | www/libxul/Makefile | 2 | ||||
-rw-r--r-- | www/libxul/distinfo | 4 | ||||
-rw-r--r-- | www/libxul/files/patch-bug543241 | 25 |
3 files changed, 3 insertions, 28 deletions
diff --git a/www/libxul/Makefile b/www/libxul/Makefile index 21d1f8eb2ed5..4ec37df0cd0e 100644 --- a/www/libxul/Makefile +++ b/www/libxul/Makefile @@ -6,7 +6,7 @@ # PORTNAME= libxul -DISTVERSION= 10.0.8 +DISTVERSION= 10.0.9 CATEGORIES?= www devel MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= firefox/releases/${DISTVERSION}esr/source diff --git a/www/libxul/distinfo b/www/libxul/distinfo index 83c24e982d11..eff211db49e5 100644 --- a/www/libxul/distinfo +++ b/www/libxul/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/libxul/files/patch-bug543241 b/www/libxul/files/patch-bug543241 deleted file mode 100644 index 7cc0736c14b6..000000000000 --- a/www/libxul/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; - |