svn commit: r460808 - in branches/2018Q1/www/palemoon: . files
Tobias Kortkamp
tobik at FreeBSD.org
Sat Feb 3 12:42:16 UTC 2018
Author: tobik
Date: Sat Feb 3 12:42:15 2018
New Revision: 460808
URL: https://svnweb.freebsd.org/changeset/ports/460808
Log:
MFH: r460803
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 at gmail.com (maintainer)
Security: 5044bd23-08cb-11e8-b08f-00012e582166
Approved by: ports-secteam blanket
Added:
branches/2018Q1/www/palemoon/files/patch-bug1278861
- copied unchanged from r460803, head/www/palemoon/files/patch-bug1278861
Modified:
branches/2018Q1/www/palemoon/Makefile
branches/2018Q1/www/palemoon/distinfo
Directory Properties:
branches/2018Q1/ (props changed)
Modified: branches/2018Q1/www/palemoon/Makefile
==============================================================================
--- branches/2018Q1/www/palemoon/Makefile Sat Feb 3 12:40:43 2018 (r460807)
+++ branches/2018Q1/www/palemoon/Makefile Sat Feb 3 12:42:15 2018 (r460808)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= palemoon
-DISTVERSION= 27.7.0
+DISTVERSION= 27.7.2
DISTVERSIONSUFFIX=_Release
CATEGORIES= www ipv6
Modified: branches/2018Q1/www/palemoon/distinfo
==============================================================================
--- branches/2018Q1/www/palemoon/distinfo Sat Feb 3 12:40:43 2018 (r460807)
+++ branches/2018Q1/www/palemoon/distinfo Sat Feb 3 12:42:15 2018 (r460808)
@@ -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: branches/2018Q1/www/palemoon/files/patch-bug1278861 (from r460803, head/www/palemoon/files/patch-bug1278861)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2018Q1/www/palemoon/files/patch-bug1278861 Sat Feb 3 12:42:15 2018 (r460808, copy of r460803, head/www/palemoon/files/patch-bug1278861)
@@ -0,0 +1,23 @@
+
+# HG changeset patch
+# User Nathan Froyd <froydnj at gmail.com>
+# Date 1466820205 14400
+# Node ID bd25b06261c840a62d035192cf4b1dbc18f54e3f
+# Parent fbe25a30fcbbe172bdd37c70c5b06cdbb07886af
+Bug 1278861 - adjust ifdefs in Conversions.h:ToInt32 to catch clang-on-arm-generally; r=luke
+
+The bug noted in ToInt32 doesn't just exist when compiling for
+arm-darwin; it exists for ARM targets generally. The ifdef should
+reflect that.
+
+--- js/public/Conversions.h.orig 2018-01-17 20:56:32 UTC
++++ js/public/Conversions.h
+@@ -349,7 +349,7 @@ ToIntWidth(double d)
+ inline int32_t
+ ToInt32(double d)
+ {
+-#if defined (__arm__) && defined (__GNUC__)
++#if defined (__arm__) && defined (__GNUC__) && !defined(__clang__)
+ int32_t i;
+ uint32_t tmp0;
+ uint32_t tmp1;
More information about the svn-ports-branches
mailing list