From owner-svn-ports-all@freebsd.org Mon Sep 25 17:25:31 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 56319E200EF; Mon, 25 Sep 2017 17:25:31 +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 2299F2739; Mon, 25 Sep 2017 17:25:31 +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 v8PHPULI064318; Mon, 25 Sep 2017 17:25:30 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8PHPUxN064317; Mon, 25 Sep 2017 17:25:30 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201709251725.v8PHPUxN064317@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 25 Sep 2017 17:25:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r450625 - 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: 450625 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: Mon, 25 Sep 2017 17:25:31 -0000 Author: jbeich Date: Mon Sep 25 17:25:30 2017 New Revision: 450625 URL: https://svnweb.freebsd.org/changeset/ports/450625 Log: MFH: r450623 r450624 www/firefox: unbreak on powerpc64, sparc64 In file included from toolkit/crashreporter/google-breakpad/src/third_party/curl/curl.h:44:0, from toolkit/components/telemetry/pingsender/pingsender_unix_common.cpp:13, from objdir/toolkit/components/telemetry/pingsender/Unified_cpp_pingsender0.cpp:11: toolkit/crashreporter/google-breakpad/src/third_party/curl/curlrules.h:144:41: error: size of array '__curl_rule_01__' is negative [CurlchkszEQ(long, CURL_SIZEOF_LONG)]; ^ Reported by: jhibbits Approved by: ports-secteam blanket Added: branches/2017Q3/www/firefox/files/patch-bug1388744 - copied, changed from r450623, head/www/firefox/files/patch-bug1388744 Modified: Directory Properties: branches/2017Q3/ (props changed) Copied and modified: branches/2017Q3/www/firefox/files/patch-bug1388744 (from r450623, head/www/firefox/files/patch-bug1388744) ============================================================================== --- head/www/firefox/files/patch-bug1388744 Mon Sep 25 17:19:37 2017 (r450623, copy source) +++ branches/2017Q3/www/firefox/files/patch-bug1388744 Mon Sep 25 17:25:30 2017 (r450625) @@ -8,7 +8,7 @@ Unbreak pingsender build on Tier3 archs /* The size of `long', as computed by sizeof. */ -#if defined(_M_X64) || (defined(__x86_64__) && !defined(__ILP32__)) || \ - defined(__aarch64__) || (defined(__mips__) && _MIPS_SIM == _ABI64) -+#if defined(_M_X64) || (defined(__LP64__) && !defined(__ILP32__)) ++#if defined(_M_X64) || defined(__LP64__) #define CURL_SIZEOF_LONG 8 #else #define CURL_SIZEOF_LONG 4