From owner-svn-ports-all@freebsd.org Tue Sep 12 05:51:28 2017 Return-Path: Delivered-To: svn-ports-all@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 07872E1A4B4; Tue, 12 Sep 2017 05:51:28 +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 C77553257; Tue, 12 Sep 2017 05:51:27 +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 v8C5pQ3m046909; Tue, 12 Sep 2017 05:51:26 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8C5pQ65046908; Tue, 12 Sep 2017 05:51:26 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201709120551.v8C5pQ65046908@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 12 Sep 2017 05:51:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r449674 - branches/2017Q3/www/firefox/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/www/firefox/files X-SVN-Commit-Revision: 449674 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Sep 2017 05:51:28 -0000 Author: jbeich Date: Tue Sep 12 05:51:26 2017 New Revision: 449674 URL: https://svnweb.freebsd.org/changeset/ports/449674 Log: MFH: r449673 www/firefox: unbreak on powerpc64, sparc64 In file included from objdir/dist/include/mozilla/dom/EventTarget.h:12:0, from dom/base/nsPIDOMWindow.h:15, from objdir/dist/include/mozilla/DOMEventTargetHelper.h:13, from dom/presentation/PresentationAvailability.h:10, from dom/presentation/AvailabilityCollection.cpp:10, from objdir/dom/presentation/Unified_cpp_dom_presentation0.cpp:2: dom/base/nsWrapperCache.h:48:1: error: static assertion failed: Only support 32-bit and 64-bit static_assert(sizeof(void*) == 4, "Only support 32-bit and 64-bit"); ^ Reported by: Martin Husemann (via upstream bug) Approved by: ports-secteam blanket Added: branches/2017Q3/www/firefox/files/patch-bug1376277 - copied unchanged from r449673, head/www/firefox/files/patch-bug1376277 Modified: Directory Properties: branches/2017Q3/ (props changed) Copied: branches/2017Q3/www/firefox/files/patch-bug1376277 (from r449673, head/www/firefox/files/patch-bug1376277) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/www/firefox/files/patch-bug1376277 Tue Sep 12 05:51:26 2017 (r449674, copy of r449673, head/www/firefox/files/patch-bug1376277) @@ -0,0 +1,22 @@ +commit ac723ae99f3a +Author: Petr Sumbera +Date: Tue Jun 27 01:33:49 2017 -0700 + + Bug 1376277 - nsWrapperCache.h: add support for 64bits sparc build. r=glandium +--- + dom/base/nsWrapperCache.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git dom/base/nsWrapperCache.h dom/base/nsWrapperCache.h +index b00d7aceb5c8..994ed73332ff 100644 +--- dom/base/nsWrapperCache.h ++++ dom/base/nsWrapperCache.h +@@ -41,7 +41,7 @@ class nsWindowRoot; + // This may waste space for some other nsWrapperCache-derived objects that have + // a 32-bit field as their first member, but those objects are unlikely to be as + // numerous or performance-critical as DOM nodes. +-#if defined(_M_X64) || defined(__x86_64__) || defined(__aarch64__) ++#if defined(_M_X64) || defined(__LP64__) + static_assert(sizeof(void*) == 8, "These architectures should be 64-bit"); + #define BOOL_FLAGS_ON_WRAPPER_CACHE + #else