Based on the mozilla-5.0 branch. SeaMonkey 2.2 contains the following major changes relative to SeaMonkey 2.1: Windows: Bundled extensions/add-ons are no longer optional in SeaMonkey's installer. Archive options can now be changed from the Copies & Folders Account Settings pane. Mozilla platform changes CSS Animations are now supported. Improved canvas, JavaScript, memory, and networking performance. Improved standards support for HTML5, XHR, MathML, SMIL, and canvas. Improved spell checking for some locales. WebGL content can no longer load cross-domain textures. Background tabs have setTimeout and setInterval clamped to 1000ms to improve performance.
53 lines
1.2 KiB
Text
53 lines
1.2 KiB
Text
$NetBSD: patch-xn,v 1.1 2011/07/11 20:46:36 tnn Exp $
|
|
|
|
--- mozilla/xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_mips.s.orig 2010-03-31 05:56:51.000000000 -0400
|
|
+++ mozilla/xpcom/reflect/xptcall/src/md/unix/xptcinvoke_asm_mips.s 2010-03-31 06:28:51.000000000 -0400
|
|
@@ -42,8 +42,46 @@
|
|
|
|
/* This code is for MIPS using the O32 ABI. */
|
|
|
|
-#include <sys/regdef.h>
|
|
-#include <sys/asm.h>
|
|
+#ifdef __NetBSD__
|
|
+# include <machine/regdef.h>
|
|
+# include <machine/asm.h>
|
|
+# ifndef fp
|
|
+# define fp s8
|
|
+# endif
|
|
+# ifndef PTRLOG
|
|
+# if SZREG == 4
|
|
+# define PTRLOG 2
|
|
+# else
|
|
+# define PTRLOG 3
|
|
+# endif
|
|
+# endif
|
|
+# ifndef SETUP_GP
|
|
+# if defined(__mips_o32)
|
|
+# define SETUP_GP \
|
|
+ .set push; \
|
|
+ .set noreorder; \
|
|
+ .cpload t9; \
|
|
+ .set pop
|
|
+# define SAVE_GP(x) \
|
|
+ .cprestore x
|
|
+# else
|
|
+# define SETUP_GP
|
|
+# define SAVE_GP(x)
|
|
+# endif
|
|
+# endif
|
|
+# ifndef ALSZ
|
|
+# if defined(__mips_n32) || defined(__mips_n64)
|
|
+# define ALSZ 15
|
|
+# define ALMASK ~15
|
|
+# else
|
|
+# define ALSZ 7
|
|
+# define ALMASK ~7
|
|
+# endif
|
|
+# endif
|
|
+#else
|
|
+# include <sys/regdef.h>
|
|
+# include <sys/asm.h>
|
|
+#endif
|
|
|
|
# NARGSAVE is the argument space in the callers frame, including extra
|
|
# 'shadowed' space for the argument registers. The minimum of 4
|