diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-06-28 19:30:01 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-06-28 19:30:01 +0000 |
commit | fdb232d9fcdb14ee3bd7b41cf66b8df3595b9031 (patch) | |
tree | 7ef838a0dfcdbc3d0f075115374e9ae23d77812f /www/firefox35 | |
parent | 9abd758dd9d4f2caaf79404979497d8252b5c9eb (diff) | |
download | ports-fdb232d9fcdb14ee3bd7b41cf66b8df3595b9031.tar.gz ports-fdb232d9fcdb14ee3bd7b41cf66b8df3595b9031.zip |
Notes
Diffstat (limited to 'www/firefox35')
-rw-r--r-- | www/firefox35/Makefile | 2 | ||||
-rw-r--r-- | www/firefox35/distinfo | 6 | ||||
-rw-r--r-- | www/firefox35/files/patch-js-src-xpconnect-src-xpcquickstubs.cpp | 32 | ||||
-rw-r--r-- | www/firefox35/pkg-message | 16 |
4 files changed, 20 insertions, 36 deletions
diff --git a/www/firefox35/Makefile b/www/firefox35/Makefile index f44f44f7618f..a10c74bf9fc3 100644 --- a/www/firefox35/Makefile +++ b/www/firefox35/Makefile @@ -6,7 +6,7 @@ # PORTNAME= firefox -DISTVERSION= 3.5b4 +DISTVERSION= 3.5rc3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} diff --git a/www/firefox35/distinfo b/www/firefox35/distinfo index 25816b6b8b53..7c48dfc80e66 100644 --- a/www/firefox35/distinfo +++ b/www/firefox35/distinfo @@ -1,3 +1,3 @@ -MD5 (firefox-3.5b4-source.tar.bz2) = ff6bf463300cb56bcf750973b2af3d80 -SHA256 (firefox-3.5b4-source.tar.bz2) = b653f2fa8dfdd0a54a6b8c576769719cf9014ca6b09f8e9d351721a51766d95d -SIZE (firefox-3.5b4-source.tar.bz2) = 45782023 +MD5 (firefox-3.5rc3-source.tar.bz2) = f8a9146a0a3dcc18fb22b72f4e8a9e94 +SHA256 (firefox-3.5rc3-source.tar.bz2) = e338e63ee88aaef2b048bb94f2014336801e9f61d7eda773d915d681a3e77994 +SIZE (firefox-3.5rc3-source.tar.bz2) = 46596784 diff --git a/www/firefox35/files/patch-js-src-xpconnect-src-xpcquickstubs.cpp b/www/firefox35/files/patch-js-src-xpconnect-src-xpcquickstubs.cpp deleted file mode 100644 index 8dbc916589af..000000000000 --- a/www/firefox35/files/patch-js-src-xpconnect-src-xpcquickstubs.cpp +++ /dev/null @@ -1,32 +0,0 @@ ---- js/src/xpconnect/src/xpcquickstubs.cpp.orig 2009-05-10 14:31:55.000000000 +0200 -+++ js/src/xpconnect/src/xpcquickstubs.cpp 2009-05-10 14:33:07.000000000 +0200 -@@ -210,8 +210,8 @@ - if(setterobjp) - *setterobjp = setterobj; - return JS_DefinePropertyById(cx, obj, interned_id, JSVAL_VOID, -- (JSPropertyOp)getterobj, -- (JSPropertyOp)setterobj, -+ JS_DATA_TO_FUNC_PTR(JSPropertyOp, getterobj), -+ JS_DATA_TO_FUNC_PTR(JSPropertyOp, setterobj), - attrs); - } - -@@ -255,7 +255,7 @@ - if(attrs & JSPROP_GETTER) - { - JS_SET_RVAL(cx, vp, -- OBJECT_TO_JSVAL(reinterpret_cast<JSObject *>(getter))); -+ OBJECT_TO_JSVAL(JS_FUNC_TO_DATA_PTR(JSObject *, getter))); - return JS_TRUE; - } - } -@@ -264,7 +264,7 @@ - if(attrs & JSPROP_SETTER) - { - JS_SET_RVAL(cx, vp, -- OBJECT_TO_JSVAL(reinterpret_cast<JSObject *>(setter))); -+ OBJECT_TO_JSVAL(JS_FUNC_TO_DATA_PTR(JSObject *, setter))); - return JS_TRUE; - } - } - diff --git a/www/firefox35/pkg-message b/www/firefox35/pkg-message index 447c5a0aef6e..ab2cd1e23c64 100644 --- a/www/firefox35/pkg-message +++ b/www/firefox35/pkg-message @@ -14,6 +14,22 @@ The SSH sever on remote_host must allow pub key authentication. ====================================================================== +Firefox 3.5 and HTML5 + +Certain functions used to display HTML5 elements need the sem module. + +If your Firefox crashes with the following message while viewing a +HTML5 page: +"Bad system call (core dumped)" + +you need to load the sem module (kldload sem). + +To load sem on every boot put the following into your +/boot/loader.conf: +sem_load="YES" + +====================================================================== + Any bug reports should be addressed to the maintainers at: gecko@FreeBSD.org You may also Cc: freebsd-ports@FreeBSD.org. Please do not send |