Date: Sat, 3 Feb 2018 10:36:46 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460803 - in head/www/palemoon: . files Message-ID: <201802031036.w13AakxJ011470@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Sat Feb 3 10:36:46 2018 New Revision: 460803 URL: https://svnweb.freebsd.org/changeset/ports/460803 Log: www/palemoon: Update to 27.7.2 - Attempt to fix build with Clang 6 [1] Changes: http://www.palemoon.org/releasenotes.shtml PR: 225644, 225280 [1] Approved by: lichray@gmail.com (maintainer) Security: 5044bd23-08cb-11e8-b08f-00012e582166 Added: head/www/palemoon/files/patch-bug1278861 - copied, changed from r460796, head/www/libxul/files/patch-bug1278861 Modified: head/www/palemoon/Makefile head/www/palemoon/distinfo Modified: head/www/palemoon/Makefile ============================================================================== --- head/www/palemoon/Makefile Sat Feb 3 10:27:05 2018 (r460802) +++ head/www/palemoon/Makefile Sat Feb 3 10:36:46 2018 (r460803) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= palemoon -DISTVERSION= 27.7.0 +DISTVERSION= 27.7.2 DISTVERSIONSUFFIX=_Release -PORTREVISION= 1 CATEGORIES= www ipv6 MAINTAINER= lichray@gmail.com Modified: head/www/palemoon/distinfo ============================================================================== --- head/www/palemoon/distinfo Sat Feb 3 10:27:05 2018 (r460802) +++ head/www/palemoon/distinfo Sat Feb 3 10:36:46 2018 (r460803) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516081122 -SHA256 (MoonchildProductions-Pale-Moon-27.7.0_Release_GH0.tar.gz) = 08c2e274f9f0a20eef92debeaae259c1fdf098f12a7c4a5c27a84567f40ef1bc -SIZE (MoonchildProductions-Pale-Moon-27.7.0_Release_GH0.tar.gz) = 179823754 +TIMESTAMP = 1517642556 +SHA256 (MoonchildProductions-Pale-Moon-27.7.2_Release_GH0.tar.gz) = 0de1d1d3185d1470ee34774a9f058b7ed930757b337888a1323ceb88b31860cc +SIZE (MoonchildProductions-Pale-Moon-27.7.2_Release_GH0.tar.gz) = 179831808 Copied and modified: head/www/palemoon/files/patch-bug1278861 (from r460796, head/www/libxul/files/patch-bug1278861) ============================================================================== --- head/www/libxul/files/patch-bug1278861 Sat Feb 3 08:34:24 2018 (r460796, copy source) +++ head/www/palemoon/files/patch-bug1278861 Sat Feb 3 10:36:46 2018 (r460803) @@ -10,29 +10,14 @@ The bug noted in ToInt32 doesn't just exist when compi arm-darwin; it exists for ARM targets generally. The ifdef should reflect that. -diff --git js/public/Conversions.h js/public/Conversions.h ---- js/public/Conversions.h +--- js/public/Conversions.h.orig 2018-01-17 20:56:32 UTC +++ js/public/Conversions.h -@@ -395,19 +395,19 @@ ToIntWidth(double d) - } - - } // namespace detail - - /* ES5 9.5 ToInt32 (specialized for doubles). */ +@@ -349,7 +349,7 @@ ToIntWidth(double d) inline int32_t ToInt32(double d) { -- // clang crashes compiling this when targeting arm-darwin: -+ // clang crashes compiling this when targeting arm: - // https://llvm.org/bugs/show_bug.cgi?id=22974 --#if defined (__arm__) && defined (__GNUC__) && !defined(__APPLE__) +-#if defined (__arm__) && defined (__GNUC__) +#if defined (__arm__) && defined (__GNUC__) && !defined(__clang__) int32_t i; uint32_t tmp0; uint32_t tmp1; - uint32_t tmp2; - asm ( - // We use a pure integer solution here. In the 'softfp' ABI, the argument - // will start in r0 and r1, and VFP can't do all of the necessary ECMA - // conversions by itself so some integer code will be required anyway. A -
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802031036.w13AakxJ011470>