Index: branches/2018Q1/www/palemoon/Makefile =================================================================== --- branches/2018Q1/www/palemoon/Makefile (revision 460807) +++ branches/2018Q1/www/palemoon/Makefile (revision 460808) @@ -1,62 +1,62 @@ # Created by: Zhihao Yuan # $FreeBSD$ PORTNAME= palemoon -DISTVERSION= 27.7.0 +DISTVERSION= 27.7.2 DISTVERSIONSUFFIX=_Release CATEGORIES= www ipv6 MAINTAINER= lichray@gmail.com COMMENT= Open Source Goanna-based web browser BUILD_DEPENDS= nspr>=4.15:devel/nspr \ nss>=3.31.1:security/nss \ libevent>=2.0.22:devel/libevent \ harfbuzz>=1.4.3:print/harfbuzz \ graphite2>=1.3.10:graphics/graphite2 \ png>=1.6.16:graphics/png \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.19.3:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ zip:archivers/zip USE_GITHUB= yes GH_ACCOUNT= MoonchildProductions GH_PROJECT= Pale-Moon USE_GECKO= gecko MOZ_PKGCONFIG_FILES= # empty USE_MOZILLA= -soundtouch USE_GL= gl PM_ICON= ${PORTNAME}.png PM_ICON_SRC= ${PREFIX}/lib/${PORTNAME}/browser/icons/mozicon128.png PM_DESKTOP= ${WRKSRC}/browser/branding/official/${PORTNAME}.desktop MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding \ --enable-devtools \ --enable-jemalloc \ --enable-jemalloc-lib OPTIONS_DEFAULT= BUNDLED_CAIRO GTK2 OPTIONS_EXCLUDE= DTRACE INTEGER_SAMPLES JACK TEST .include "${.CURDIR}/../../www/firefox/Makefile.options" post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp pre-configure: (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${WRKSRC}/js/src/ && ${LOCALBASE}/bin/autoconf-2.13) post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps ${INSTALL_DATA} ${PM_DESKTOP} ${STAGEDIR}${PREFIX}/share/applications/ ${LN} -sf ${PM_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${PM_ICON} .include Index: branches/2018Q1/www/palemoon/distinfo =================================================================== --- branches/2018Q1/www/palemoon/distinfo (revision 460807) +++ branches/2018Q1/www/palemoon/distinfo (revision 460808) @@ -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 Index: branches/2018Q1/www/palemoon/files/patch-bug1278861 =================================================================== --- branches/2018Q1/www/palemoon/files/patch-bug1278861 (nonexistent) +++ branches/2018Q1/www/palemoon/files/patch-bug1278861 (revision 460808) @@ -0,0 +1,23 @@ + +# HG changeset patch +# User Nathan Froyd +# 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; Property changes on: branches/2018Q1/www/palemoon/files/patch-bug1278861 ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2018Q1 =================================================================== --- branches/2018Q1 (revision 460807) +++ branches/2018Q1 (revision 460808) Property changes on: branches/2018Q1 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r460803