Changelog: What's New in SeaMonkey 2.32.1 Mostly regression fixes, including: MailNews feeds not updating Selected profile in Profile Manager not remembered Opening a bookmark folder in tabs on Linux Troubleshooting Information (about:support) with the Modern theme What's New in SeaMonkey 2.32 SeaMonkey 2.32 contains the following major changes relative to SeaMonkey 2.31: SeaMonkey-specific changes The Spell Check dialog is now resizable. Generational Garbage Collection has been enabled. Mozilla platform changes Improved handling of dynamic styling changes to increase responsiveness. Implemented HTTP Public Key Pinning Extension (for enhanced authentication of encrypted connections). Reduced resource usage for scaled images. Also see Firefox 35 for Developers. Fixed several stability issue Fixed in SeaMonkey 2.32 2015-09 XrayWrapper bypass through DOM objects 2015-08 Delegated OCSP responder certificates failure with id-pkix-ocsp-nocheck extension 2015-06 Read-after-free in WebRTC 2015-05 Read of uninitialized memory in Web Audio 2015-04 Cookie injection through Proxy Authenticate responses 2015-03 sendBeacon requests lack an Origin header 2015-02 Uninitialized memory use during bitmap rendering 2015-01 Miscellaneous memory safety hazards (rv:35.0 / rv:31.4)
45 lines
1.8 KiB
C++
45 lines
1.8 KiB
C++
$NetBSD: patch-mozilla_ipc_glue_GeckoChildProcessHost.cpp,v 1.12 2015/02/15 02:11:03 ryoon Exp $
|
|
|
|
--- mozilla/ipc/glue/GeckoChildProcessHost.cpp.orig 2015-02-05 04:38:37.000000000 +0000
|
|
+++ mozilla/ipc/glue/GeckoChildProcessHost.cpp
|
|
@@ -4,7 +4,13 @@
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
+#if defined(__NetBSD__)
|
|
+_Pragma("GCC visibility push(default)")
|
|
+#endif
|
|
#include "GeckoChildProcessHost.h"
|
|
+#if defined(__NetBSD__)
|
|
+_Pragma("GCC visibility pop")
|
|
+#endif
|
|
|
|
#include "base/command_line.h"
|
|
#include "base/string_util.h"
|
|
@@ -533,7 +539,7 @@ GeckoChildProcessHost::PerformAsyncLaunc
|
|
// and passing wstrings from one config to the other is unsafe. So
|
|
// we split the logic here.
|
|
|
|
-#if defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_BSD)
|
|
+#if defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_BSD) || defined(OS_SOLARIS)
|
|
base::environment_map newEnvVars;
|
|
ChildPrivileges privs = mPrivileges;
|
|
if (privs == base::PRIVILEGES_DEFAULT) {
|
|
@@ -672,7 +678,7 @@ GeckoChildProcessHost::PerformAsyncLaunc
|
|
childArgv.push_back(pidstring);
|
|
|
|
#if defined(MOZ_CRASHREPORTER)
|
|
-# if defined(OS_LINUX) || defined(OS_BSD)
|
|
+# if defined(OS_LINUX) || defined(OS_BSD) || defined(OS_SOLARIS)
|
|
int childCrashFd, childCrashRemapFd;
|
|
if (!CrashReporter::CreateNotificationPipeForChild(
|
|
&childCrashFd, &childCrashRemapFd))
|
|
@@ -705,7 +711,7 @@ GeckoChildProcessHost::PerformAsyncLaunc
|
|
childArgv.push_back(childProcessType);
|
|
|
|
base::LaunchApp(childArgv, mFileMap,
|
|
-#if defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_BSD)
|
|
+#if defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_BSD) || defined(OS_SOLARIS)
|
|
newEnvVars, privs,
|
|
#endif
|
|
false, &process, arch);
|