From ed564c5560425a51c9637a8e57b60f76fc32f06c Mon Sep 17 00:00:00 2001 From: Joe Marcus Clarke Date: Mon, 2 Jun 2003 18:30:59 +0000 Subject: Add mozilla-firebird after a repo move from phoenix. Mozilla Firebird is the browser reborn from the ashes of the Phoenix. * Update to 0.6 [1] * Add optional GTK+-2 support [2] * Add [untested] Sparc64 support [3] * Add [untested] Alpha support [4] * Do not compile with -O2 by default. Instead specify -DWITH_OPTIMIZED_CFLAGS to get extra optimizations * Link the Java Plug-in again Submitted by: Stijn Hoop [1] Christopher Nehren [2] (based on) tmm and kris [3] Bernd Walter [4] Minor fixes by: obraun --- www/mozilla-firebird/files/patch-jsfun.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 www/mozilla-firebird/files/patch-jsfun.c (limited to 'www/mozilla-firebird/files/patch-jsfun.c') diff --git a/www/mozilla-firebird/files/patch-jsfun.c b/www/mozilla-firebird/files/patch-jsfun.c new file mode 100644 index 000000000000..69aacb9b54cd --- /dev/null +++ b/www/mozilla-firebird/files/patch-jsfun.c @@ -0,0 +1,29 @@ +--- 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; + } -- cgit v1.2.3