head 1.5; access; symbols pkgsrc-2013Q3:1.4.0.10 pkgsrc-2013Q3-base:1.4 pkgsrc-2013Q2:1.4.0.8 pkgsrc-2013Q2-base:1.4 pkgsrc-2013Q1:1.4.0.6 pkgsrc-2013Q1-base:1.4 pkgsrc-2012Q4:1.4.0.4 pkgsrc-2012Q4-base:1.4 pkgsrc-2012Q3:1.4.0.2 pkgsrc-2012Q3-base:1.4 pkgsrc-2012Q2:1.2.0.2 pkgsrc-2012Q2-base:1.2 pkgsrc-2012Q1:1.1.0.2 pkgsrc-2012Q1-base:1.1; locks; strict; comment @// @; 1.5 date 2013.11.13.14.36.58; author ryoon; state dead; branches; next 1.4; commitid cSKjerUziN8tQ7dx; 1.4 date 2012.09.02.06.43.42; author ryoon; state Exp; branches; next 1.3; 1.3 date 2012.07.19.17.57.30; author ryoon; state Exp; branches; next 1.2; 1.2 date 2012.04.28.16.56.59; author ryoon; state Exp; branches; next 1.1; 1.1 date 2012.03.23.19.35.06; author ryoon; state Exp; branches; next ; desc @@ 1.5 log @Fix PR pkg/48240, bump PKGREVISION, and remove obsolete patches * Use *30 instead of *50. Restore session is recovered on NetBSD/amd64 5.2. Based on martin@@'s patch on pkgsrc-users@@. @ text @$NetBSD: patch-mozilla_netwerk_protocol_http_HttpChannelParent.cpp,v 1.4 2012/09/02 06:43:42 ryoon Exp $ --- mozilla/netwerk/protocol/http/HttpChannelParent.cpp.orig 2012-08-25 00:31:26.000000000 +0000 +++ mozilla/netwerk/protocol/http/HttpChannelParent.cpp @@@@ -299,6 +299,13 @@@@ HttpChannelParent::RecvUpdateAssociatedC return true; } +// Compiling with a version of GCC <= 4.4 fails with an internal compiler +// error. +#if !defined(__GNUC__) || \ + (__GNUC__ >= 5) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) +#pragma GCC optimize ("O0") +#endif + bool HttpChannelParent::RecvRedirect2Verify(const nsresult& result, const RequestHeaderTuples& changedHeaders) @ 1.4 log @Update to 15.0 * Update Mozilla Lightning to 1.7 * Update Enigmail to 1.4.4 (functionality is not tested yet; should be updated) * Regen patches Changelog: NEW Multi-Channel Chat: You now can enjoy real time conversation with your contacts, right from your favorite messaging application. NEW Do Not Track: This option has been implemented as an addition to Search the Web. NEW Ubuntu One is now supported in Filelink - the option to upload large attachments to online storage services. NEW New User Interface: Thunderbird is replicating the new look and feel of Mozilla Firefox in an effort to provide a similar user experience across all Mozilla software desktop or mobile and all platforms. FIXED Various fixes and performance improvements FIXED Various security fixes MFSA 2012-72 Web console eval capable of executing chrome-privileged code MFSA 2012-70 Location object security checks bypassed by chrome code MFSA 2012-68 DOMParser loads linked resources in extensions when parsing text/html MFSA 2012-67 Installer will launch incorrect executable following new installation 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) @ text @d1 1 a1 1 $NetBSD: patch-mozilla_netwerk_protocol_http_HttpChannelParent.cpp,v 1.3 2012/07/19 17:57:30 ryoon Exp $ @ 1.3 log @Update to 14.0 * Use Lightning 1.6 release * Enigmail is not tested fully Changelog: from http://www.mozilla.org/en-US/products/thunderbird/14.0/releasenotes/ FIXED Various fixes and performance improvements FIXED Various security fixes @ text @d1 1 a1 1 $NetBSD$ d3 1 a3 1 --- mozilla/netwerk/protocol/http/HttpChannelParent.cpp.orig 2012-07-12 15:25:25.000000000 +0000 d5 4 a8 4 @@@@ -340,6 +340,13 @@@@ HttpChannelParent::RecvUpdateAssociatedC // Compiling this with GCC <= 4.4 fails with an internal compiler error #pragma GCC optimize ("O0") #endif a15 1 d18 1 @ 1.2 log @Update to 12.0 * Remove unused option. * Update enigmail to 1.4.1 Changelog: * Global Search results now include message extracts in the results * Various security fixes * Various improvements to RSS feed subscription and general feed handling * Thunderbird now supports add-ons that provide different types of local mail storage @ text @d1 1 a1 1 $NetBSD: patch-mozilla_netwerk_protocol_http_HttpChannelParent.cpp,v 1.1 2012/03/23 19:35:06 ryoon Exp $ d3 1 a3 4 * Fix build with gcc<4.5, for example, DragonFly 3.0.1. See https://bugzilla.mozilla.org/show_bug.cgi?id=621446 --- mozilla/netwerk/protocol/http/HttpChannelParent.cpp.orig 2012-04-20 22:40:20.000000000 +0000 d5 4 a8 8 @@@@ -331,10 +331,15 @@@@ HttpChannelParent::RecvUpdateAssociatedC return true; } -// Bug 621446 investigation, we don't want conditional PR_Aborts bellow to be +// Bug 621446 investigation, we don't want conditional PR_Aborts below to be // merged to a single address. #pragma warning(disable : 4068) d13 1 a13 1 #pragma GCC optimize ("O0") d15 1 @ 1.1 log @Fix build with gcc<4.5. For example, fix build on DragonFly 3.0.1. See https://bugzilla.mozilla.org/show_bug.cgi?id=621446 @ text @d1 1 a1 1 $NetBSD$ d6 1 a6 1 --- mozilla/netwerk/protocol/http/HttpChannelParent.cpp.orig 2012-03-13 02:43:37.000000000 +0000 d8 1 a8 1 @@@@ -333,10 +333,15 @@@@ HttpChannelParent::RecvUpdateAssociatedC @