diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-07-29 19:22:12 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-07-29 19:22:12 +0000 |
commit | 84361df012beb0464e78d0346ba2efafa3a77a15 (patch) | |
tree | 1e70abbe9eea1731991dc5a1fea9c9b6beb4ee69 /www/firefox-esr/files/patch-jsfun.c | |
parent | add 2 missing library links (diff) |
Update to 0.6.1. This is mainly a bug fix release according to the release
notes at http://www.mozilla.org/projects/firebird/release-notes.html,
but it went from being based on Mozilla 1.4b to 1.5a.
Note, the master site may be temporary. The source tarball at
${MASTER_SITE_MOZILLA} was missing some key bits that prevented compilation.
Diffstat (limited to 'www/firefox-esr/files/patch-jsfun.c')
-rw-r--r-- | www/firefox-esr/files/patch-jsfun.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/www/firefox-esr/files/patch-jsfun.c b/www/firefox-esr/files/patch-jsfun.c deleted file mode 100644 index 69aacb9b54cd..000000000000 --- a/www/firefox-esr/files/patch-jsfun.c +++ /dev/null @@ -1,29 +0,0 @@ ---- js/src/jsfun.c.orig Fri May 30 20:55:38 2003 -+++ js/src/jsfun.c Fri May 30 20:54:24 2003 -@@ -1081,7 +1081,7 @@ - JSString *atomstr; - char *propname; - JSScopeProperty *sprop; -- jsid userid; -+ uint32 userid; - JSAtom *atom; - uintN i, n, dupflag; - uint32 type; -@@ -1157,7 +1157,7 @@ - userid = INT_TO_JSVAL(sprop->shortid); - propname = ATOM_BYTES((JSAtom *)sprop->id); - if (!JS_XDRUint32(xdr, &type) || -- !JS_XDRUint32(xdr, (uint32 *)&userid) || -+ !JS_XDRUint32(xdr, &userid) || - !JS_XDRCString(xdr, &propname)) { - if (mark) - JS_ARENA_RELEASE(&cx->tempPool, mark); -@@ -1173,7 +1173,7 @@ - uintN attrs = JSPROP_ENUMERATE | JSPROP_PERMANENT; - - if (!JS_XDRUint32(xdr, &type) || -- !JS_XDRUint32(xdr, (uint32 *)&userid) || -+ !JS_XDRUint32(xdr, &userid) || - !JS_XDRCString(xdr, &propname)) { - return JS_FALSE; - } |