From owner-svn-ports-branches@freebsd.org Tue Mar 29 16:05:49 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 851E0AE2923; Tue, 29 Mar 2016 16:05:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60E2D1D18; Tue, 29 Mar 2016 16:05:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2TG5mmk066920; Tue, 29 Mar 2016 16:05:48 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2TG5lYH066910; Tue, 29 Mar 2016 16:05:47 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201603291605.u2TG5lYH066910@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 29 Mar 2016 16:05:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r412123 - in branches/2016Q1: mail/thunderbird mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files www/libxul www/libxul/files www/seamonkey www/s... X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Mar 2016 16:05:49 -0000 Author: jbeich Date: Tue Mar 29 16:05:47 2016 New Revision: 412123 URL: https://svnweb.freebsd.org/changeset/ports/412123 Log: MFH: r411909 gecko: fix an unlikely race with environ(7) Approved by: ports-secteam (feld) Added: branches/2016Q1/mail/thunderbird/files/patch-bug1233275 - copied unchanged from r411909, head/mail/thunderbird/files/patch-bug1233275 branches/2016Q1/www/firefox-esr/files/patch-bug1233275 - copied unchanged from r411909, head/www/firefox-esr/files/patch-bug1233275 branches/2016Q1/www/firefox/files/patch-bug1233275 - copied unchanged from r411909, head/www/firefox/files/patch-bug1233275 branches/2016Q1/www/libxul/files/patch-bug1233275 - copied unchanged from r411909, head/www/libxul/files/patch-bug1233275 branches/2016Q1/www/seamonkey/files/patch-bug1233275 - copied unchanged from r411909, head/www/seamonkey/files/patch-bug1233275 Modified: branches/2016Q1/mail/thunderbird/Makefile branches/2016Q1/www/firefox-esr/Makefile branches/2016Q1/www/firefox/Makefile branches/2016Q1/www/libxul/Makefile branches/2016Q1/www/seamonkey/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/mail/thunderbird/Makefile ============================================================================== --- branches/2016Q1/mail/thunderbird/Makefile Tue Mar 29 15:54:21 2016 (r412122) +++ branches/2016Q1/mail/thunderbird/Makefile Tue Mar 29 16:05:47 2016 (r412123) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 38.7.0 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Copied: branches/2016Q1/mail/thunderbird/files/patch-bug1233275 (from r411909, head/mail/thunderbird/files/patch-bug1233275) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/mail/thunderbird/files/patch-bug1233275 Tue Mar 29 16:05:47 2016 (r412123, copy of r411909, head/mail/thunderbird/files/patch-bug1233275) @@ -0,0 +1,40 @@ +# Copy environment for IPC using NSPR to avoid race + +diff --git a/ipc/chromium/src/base/process_util_bsd.cc b/ipc/chromium/src/base/process_util_bsd.cc +--- mozilla/ipc/chromium/src/base/process_util_bsd.cc ++++ mozilla/ipc/chromium/src/base/process_util_bsd.cc +@@ -13,6 +13,7 @@ + + #include + ++#include "nspr.h" + #include "base/eintr_wrapper.h" + #include "base/file_util.h" + #include "base/logging.h" +@@ -48,7 +49,6 @@ + + #ifdef HAVE_POSIX_SPAWN + #include +-extern "C" char **environ __dso_public; + #endif + + namespace { +@@ -114,6 +114,7 @@ bool LaunchApp(const std::vector + ++#include "nspr.h" + #include "base/eintr_wrapper.h" + +-extern "C" char **environ __attribute__((__visibility__("default"))); +- + namespace base { + + void FreeEnvVarsArray(char* array[], int length) +@@ -66,6 +65,7 @@ bool LaunchApp(const std::vector + ++#include "nspr.h" + #include "base/eintr_wrapper.h" + #include "base/file_util.h" + #include "base/logging.h" +@@ -48,7 +49,6 @@ + + #ifdef HAVE_POSIX_SPAWN + #include +-extern "C" char **environ __dso_public; + #endif + + namespace { +@@ -114,6 +114,7 @@ bool LaunchApp(const std::vector