diff options
author | ryoon <ryoon@pkgsrc.org> | 2012-09-06 12:08:50 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2012-09-06 12:08:50 +0000 |
commit | b39190ba4cb82692a651c9bb50b6c2084edc9dd1 (patch) | |
tree | df2006c379778028c1badfa17c2096231017bb4c /www/seamonkey/patches/patch-xj | |
parent | 7d890f0b75eeecaf49645a757930580f0f787faf (diff) | |
download | pkgsrc-b39190ba4cb82692a651c9bb50b6c2084edc9dd1.tar.gz |
Update to 2.12
* Update Mozilla Lightning to 1.7
* Update Enigmail to 1.4.4 (functionality is not tested yet; should
be updated)
* Regen patches
Changelog:
SeaMonkey-specific changes
None.
Mozilla platform changes
Added support for SPDY networking protocol v3.
Implemented WebGL enhancements, including compressed textures for better performance.
Optimized memory usage for add-ons.
Implemented the CSS word-break property.
Implemented high precision event timer.
HTML5: Added native support for the Opus audio codec.
HTML5: Added support for the source element media attribute.
HTML5: Added support for the audio element and video element played attribute.
Fixed several stability issues.
Fixed in SeaMonkey 2.12
MFSA 2012-70 Location object security checks bypassed by chrome code
MFSA 2012-69 Incorrect site SSL certificate data display
MFSA 2012-68 DOMParser loads linked resources in extensions when parsing text/html
MFSA 2012-65 Out-of-bounds read in format-number in XSLT
MFSA 2012-64 Graphite 2 memory corruption
MFSA 2012-63 SVG buffer overflow and use-after-free issues
MFSA 2012-62 WebGL use-after-free and memory corruption
MFSA 2012-61 Memory corruption with bitmap format images with negative height
MFSA 2012-59 Location object can be shadowed using Object.defineProperty
MFSA 2012-58 Use-after-free issues found using Address Sanitizer
MFSA 2012-57 Miscellaneous memory safety hazards (rv:15.0/ rv:10.0.7)
Diffstat (limited to 'www/seamonkey/patches/patch-xj')
-rw-r--r-- | www/seamonkey/patches/patch-xj | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/www/seamonkey/patches/patch-xj b/www/seamonkey/patches/patch-xj index ef4ce50ccd3..a192399eaa6 100644 --- a/www/seamonkey/patches/patch-xj +++ b/www/seamonkey/patches/patch-xj @@ -1,10 +1,10 @@ -$NetBSD: patch-xj,v 1.4 2012/04/28 22:48:07 ryoon Exp $ +$NetBSD: patch-xj,v 1.5 2012/09/06 12:08:52 ryoon Exp $ NetBSD ppc xptcall support code. Originally from pkgsrc/www/mozilla. ---- mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_ppc_netbsd.cpp.orig 2012-04-23 06:28:29.000000000 +0000 +--- mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_ppc_netbsd.cpp.orig 2012-08-27 04:49:34.000000000 +0000 +++ mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_ppc_netbsd.cpp -@@ -41,6 +41,7 @@ +@@ -6,6 +6,7 @@ // Implement shared vtbl methods. #include "xptcprivate.h" @@ -12,7 +12,7 @@ NetBSD ppc xptcall support code. Originally from pkgsrc/www/mozilla. // The Linux/PPC ABI (aka PPC/SYSV ABI) passes the first 8 integral // parameters and the first 8 floating point parameters in registers -@@ -71,7 +72,6 @@ PrepareAndDispatch(nsXPTCStubBase* self, +@@ -36,7 +37,6 @@ PrepareAndDispatch(nsXPTCStubBase* self, { nsXPTCMiniVariant paramBuffer[PARAM_BUFFER_COUNT]; nsXPTCMiniVariant* dispatchParams = NULL; @@ -20,7 +20,7 @@ NetBSD ppc xptcall support code. Originally from pkgsrc/www/mozilla. const nsXPTMethodInfo* info; PRUint32 paramCount; PRUint32 i; -@@ -79,12 +79,7 @@ PrepareAndDispatch(nsXPTCStubBase* self, +@@ -44,12 +44,7 @@ PrepareAndDispatch(nsXPTCStubBase* self, NS_ASSERTION(self,"no self"); @@ -34,7 +34,7 @@ NetBSD ppc xptcall support code. Originally from pkgsrc/www/mozilla. NS_ASSERTION(info,"no method info"); if (! info) return NS_ERROR_UNEXPECTED; -@@ -119,8 +114,10 @@ PrepareAndDispatch(nsXPTCStubBase* self, +@@ -84,8 +79,10 @@ PrepareAndDispatch(nsXPTCStubBase* self, if ((PRUint32) ap & 4) ap++; // doubles are 8-byte aligned on stack dp->val.d = *(double*) ap; ap += 2; @@ -45,7 +45,7 @@ NetBSD ppc xptcall support code. Originally from pkgsrc/www/mozilla. } continue; } -@@ -130,8 +127,10 @@ PrepareAndDispatch(nsXPTCStubBase* self, +@@ -95,8 +92,10 @@ PrepareAndDispatch(nsXPTCStubBase* self, else { dp->val.f = *(float*) ap; ap += 1; @@ -56,7 +56,7 @@ NetBSD ppc xptcall support code. Originally from pkgsrc/www/mozilla. } continue; } -@@ -179,9 +178,9 @@ PrepareAndDispatch(nsXPTCStubBase* self, +@@ -144,9 +143,9 @@ PrepareAndDispatch(nsXPTCStubBase* self, } } @@ -69,7 +69,7 @@ NetBSD ppc xptcall support code. Originally from pkgsrc/www/mozilla. if (dispatchParams != paramBuffer) delete [] dispatchParams; -@@ -195,7 +194,9 @@ PrepareAndDispatch(nsXPTCStubBase* self, +@@ -160,7 +159,9 @@ PrepareAndDispatch(nsXPTCStubBase* self, // however, it's quick, dirty, and'll break when the ABI changes on // us, which is what we want ;-). @@ -80,7 +80,7 @@ NetBSD ppc xptcall support code. Originally from pkgsrc/www/mozilla. __asm__ ( \ ".section \".text\" \n\t" \ ".align 2 \n\t" \ -@@ -206,6 +207,46 @@ __asm__ ( +@@ -171,6 +172,46 @@ __asm__ ( "li 11,"#n" \n\t" \ "b SharedStub@local \n" \ ); |