Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Jun 2009 21:34:45 GMT
From:      svn-freebsd-gecko@chruetertee.ch
To:        freebsd-gecko@freebsd.org
Subject:   [SVN-Commit] r38 - in trunk/www/firefox3-devel: . files
Message-ID:  <200906162134.n5GLYjxE053958@trillian.chruetertee.ch>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Tue Jun 16 21:34:45 2009
New Revision: 38

Log:
- Update to 3.5-RC1

Deleted:
   trunk/www/firefox3-devel/files/patch-js-src-xpconnect-src-xpcquickstubs.cpp
Modified:
   trunk/www/firefox3-devel/Makefile
   trunk/www/firefox3-devel/distinfo

Modified: trunk/www/firefox3-devel/Makefile
==============================================================================
--- trunk/www/firefox3-devel/Makefile	Tue Jun 16 16:23:29 2009	(r37)
+++ trunk/www/firefox3-devel/Makefile	Tue Jun 16 21:34:45 2009	(r38)
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	firefox
-DISTVERSION=	3.5b4
+DISTVERSION=	3.5rc1
 PORTEPOCH=	1
 CATEGORIES=	www ipv6
 MASTER_SITES=	${MASTER_SITE_MOZILLA}

Modified: trunk/www/firefox3-devel/distinfo
==============================================================================
--- trunk/www/firefox3-devel/distinfo	Tue Jun 16 16:23:29 2009	(r37)
+++ trunk/www/firefox3-devel/distinfo	Tue Jun 16 21:34:45 2009	(r38)
@@ -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.5rc1-source.tar.bz2) = 6e9b5fa844f5ddf80b1ae819b43b52ad
+SHA256 (firefox-3.5rc1-source.tar.bz2) = 94bda3c09924cbb92460b6e235634415d29b10e784acb5d9bc6ec509e69ed993
+SIZE (firefox-3.5rc1-source.tar.bz2) = 46596337

Deleted: trunk/www/firefox3-devel/files/patch-js-src-xpconnect-src-xpcquickstubs.cpp
==============================================================================
--- trunk/www/firefox3-devel/files/patch-js-src-xpconnect-src-xpcquickstubs.cpp	Tue Jun 16 21:34:45 2009	(r37)
+++ /dev/null	00:00:00 1970	(deleted)
@@ -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;
-         }
-     }
-



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906162134.n5GLYjxE053958>