Index: head/mail/thunderbird/Makefile =================================================================== --- head/mail/thunderbird/Makefile (revision 453436) +++ head/mail/thunderbird/Makefile (revision 453437) @@ -1,89 +1,89 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ PORTNAME= thunderbird DISTVERSION= 52.4.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build3/source DISTFILES= ${PORTNAME}-${DISTVERSION}.source${EXTRACT_SUFX} EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above BUILD_DEPENDS= nspr>=4.13.1:devel/nspr \ nss>=3.28.3:security/nss \ libevent>=2.0.21_2:devel/libevent \ harfbuzz>=1.4.1:print/harfbuzz \ graphite2>=1.3.8:graphics/graphite2 \ png>=1.6.25:graphics/png \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.17.0:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ zip:archivers/zip # soundtouch>=1.9.0:audio/soundtouch \ LIB_DEPENDS= libv4l2.so:multimedia/libv4l SSP_UNSAFE= yes USE_GECKO= gecko USE_MOZILLA= -soundtouch USE_GL= gl USES= tar:xz MOZ_OPTIONS= --enable-application=mail --enable-official-branding MOZ_MK_OPTIONS= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 MOZ_EXPORT= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 MOZ_PKGCONFIG_FILES= PORTNAME_ICON= ${MOZILLA}.png PORTNAME_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png SYSTEM_PREFS= ${FAKEDIR}/lib/${PORTNAME}/defaults/pref/${PORTNAME}.js MOZ_PIS_SCRIPTS=moz_pis_S50cleanhome OPTIONS_DEFINE= LIGHTNING RUST OPTIONS_SINGLE= TOOLKIT OPTIONS_SINGLE_TOOLKIT= GTK2 GTK3 OPTIONS_DEFAULT=BUNDLED_CAIRO CANBERRA GTK3 LIGHTNING .include "${.CURDIR}/../../www/firefox/Makefile.options" .include WRKSRC:= ${WRKDIR}/${PORTNAME}-${DISTVERSION} MOZSRC:= ${WRKSRC}/mozilla .if ${PORT_OPTIONS:MLIGHTNING} MOZ_OPTIONS+= --enable-calendar .else MOZ_OPTIONS+= --disable-calendar .endif post-extract: @${SED} -e 's|@PORTNAME_ICON@|${PORTNAME_ICON}|;s|@MOZILLA@|${MOZILLA}|' \ <${FILESDIR}/thunderbird.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/mail/app/nsMailApp.cpp pre-configure: (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${MOZSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${MOZSRC}/js/src/ && ${LOCALBASE}/bin/autoconf-2.13) port-pre-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/defaults post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${STAGEDIR}${PREFIX}/share/applications ${LN} -sf ${PORTNAME_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME_ICON} .include Index: head/mail/thunderbird/files/patch-bug1414440 =================================================================== --- head/mail/thunderbird/files/patch-bug1414440 (nonexistent) +++ head/mail/thunderbird/files/patch-bug1414440 (revision 453437) @@ -0,0 +1,72 @@ +Build libyuv with SIMD optimizations on Linux x86. + +diff --git media/libyuv/include/libyuv/compare_row.h media/libyuv/include/libyuv/compare_row.h +index 7abc2d4aef8f..161c12fa1b83 100644 +--- mozilla/media/libyuv/include/libyuv/compare_row.h ++++ mozilla/media/libyuv/include/libyuv/compare_row.h +@@ -18,8 +18,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/planar_functions.h media/libyuv/include/libyuv/planar_functions.h +index 040839c211b1..0d672dec96d6 100644 +--- mozilla/media/libyuv/include/libyuv/planar_functions.h ++++ mozilla/media/libyuv/include/libyuv/planar_functions.h +@@ -719,8 +719,7 @@ int I420Interpolate(const uint8* src0_y, + int height, + int interpolation); + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/rotate_row.h media/libyuv/include/libyuv/rotate_row.h +index 2c51584eee8b..73bbe8ef7ad4 100644 +--- mozilla/media/libyuv/include/libyuv/rotate_row.h ++++ mozilla/media/libyuv/include/libyuv/rotate_row.h +@@ -18,8 +18,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/row.h media/libyuv/include/libyuv/row.h +index f74bd9f7d17a..3bdfb75fc160 100644 +--- mozilla/media/libyuv/include/libyuv/row.h ++++ mozilla/media/libyuv/include/libyuv/row.h +@@ -30,8 +30,7 @@ extern "C" { + free(var##_mem); \ + var = 0 + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/scale_row.h media/libyuv/include/libyuv/scale_row.h +index edb46cc8c647..fe78a80f81bd 100644 +--- mozilla/media/libyuv/include/libyuv/scale_row.h ++++ mozilla/media/libyuv/include/libyuv/scale_row.h +@@ -19,8 +19,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 Property changes on: head/mail/thunderbird/files/patch-bug1414440 ___________________________________________________________________ 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: head/www/firefox/Makefile =================================================================== --- head/www/firefox/Makefile (revision 453436) +++ head/www/firefox/Makefile (revision 453437) @@ -1,77 +1,77 @@ # Created by: Alan Eldridge # $FreeBSD$ PORTNAME= firefox DISTVERSION= 56.0.2 DISTVERSIONSUFFIX=.source -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.16:devel/nspr \ nss>=3.32.1:security/nss \ icu>=59.1,1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=1.4.7:print/harfbuzz \ graphite2>=1.3.10:graphics/graphite2 \ png>=1.6.31:graphics/png \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.19.3:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ llvm40>0:devel/llvm40 \ zip:archivers/zip # soundtouch>=1.9.0:audio/soundtouch \ LIB_DEPENDS= libv4l2.so:multimedia/libv4l USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr-45.* firefox-esr-3[18].* firefox-esr-24.* MOZ_PKGCONFIG_FILES= # empty USE_MOZILLA= -soundtouch MOZILLA_NAME= Firefox USE_GL= gl USES= tar:xz FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png MOZ_EXPORT= BINDGEN_CFLAGS="-isystem${LOCALBASE}/include/nspr \ -isystem${LOCALBASE}/include/pixman-1" # XXX bug 1341234 MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding OPTIONS_DEFAULT= BUNDLED_CAIRO OPTIONS_EXCLUDE= GNOMEUI .include "${.CURDIR}/../../www/firefox/Makefile.options" WRKSRC:= ${WRKDIR}/${PORTNAME}-${DISTVERSION} post-extract: @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON}|' -e 's|@MOZILLA@|${MOZILLA}|' \ -e 's|@MOZILLA_NAME@|${MOZILLA_NAME}|' \ <${FILESDIR}/firefox.desktop.in >${WRKDIR}/${MOZILLA}.desktop 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} ${WRKDIR}/${MOZILLA}.desktop ${STAGEDIR}${PREFIX}/share/applications/ ${LN} -sf ${FIREFOX_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${FIREFOX_ICON} .include Index: head/www/firefox/files/patch-bug1414440 =================================================================== --- head/www/firefox/files/patch-bug1414440 (nonexistent) +++ head/www/firefox/files/patch-bug1414440 (revision 453437) @@ -0,0 +1,94 @@ +Build libyuv with SIMD optimizations on Linux x86. + +diff --git media/libyuv/libyuv/include/libyuv/compare_row.h media/libyuv/libyuv/include/libyuv/compare_row.h +index 7abc2d4aef8f..161c12fa1b83 100644 +--- media/libyuv/libyuv/include/libyuv/compare_row.h ++++ media/libyuv/libyuv/include/libyuv/compare_row.h +@@ -18,8 +18,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/libyuv/include/libyuv/planar_functions.h media/libyuv/libyuv/include/libyuv/planar_functions.h +index 040839c211b1..0d672dec96d6 100644 +--- media/libyuv/libyuv/include/libyuv/planar_functions.h ++++ media/libyuv/libyuv/include/libyuv/planar_functions.h +@@ -719,8 +719,7 @@ int I420Interpolate(const uint8* src0_y, + int height, + int interpolation); + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/libyuv/include/libyuv/rotate_row.h media/libyuv/libyuv/include/libyuv/rotate_row.h +index 2c51584eee8b..73bbe8ef7ad4 100644 +--- media/libyuv/libyuv/include/libyuv/rotate_row.h ++++ media/libyuv/libyuv/include/libyuv/rotate_row.h +@@ -18,8 +18,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/libyuv/include/libyuv/row.h media/libyuv/libyuv/include/libyuv/row.h +index f74bd9f7d17a..3bdfb75fc160 100644 +--- media/libyuv/libyuv/include/libyuv/row.h ++++ media/libyuv/libyuv/include/libyuv/row.h +@@ -30,8 +30,7 @@ extern "C" { + free(var##_mem); \ + var = 0 + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +@@ -103,7 +102,10 @@ extern "C" { + #define HAS_COPYROW_ERMS + #define HAS_COPYROW_SSE2 + #define HAS_H422TOARGBROW_SSSE3 ++#ifdef __SSE2__ ++// source/row_gcc.cc:5457:5: error: couldn't allocate input reg for constraint 'x' + #define HAS_HALFFLOATROW_SSE2 ++#endif + #define HAS_I400TOARGBROW_SSE2 + #define HAS_I422TOARGB1555ROW_SSSE3 + #define HAS_I422TOARGB4444ROW_SSSE3 +@@ -202,7 +204,10 @@ extern "C" { + #define HAS_ARGBTOYROW_AVX2 + #define HAS_COPYROW_AVX + #define HAS_H422TOARGBROW_AVX2 ++#ifdef __SSE2__ ++// source/row_gcc.cc:5492:5: error: couldn't allocate input reg for constraint 'x' + #define HAS_HALFFLOATROW_AVX2 ++#endif + // #define HAS_HALFFLOATROW_F16C // Enable to test halffloat cast + #define HAS_I400TOARGBROW_AVX2 + #define HAS_I422TOARGB1555ROW_AVX2 +diff --git media/libyuv/libyuv/include/libyuv/scale_row.h media/libyuv/libyuv/include/libyuv/scale_row.h +index edb46cc8c647..fe78a80f81bd 100644 +--- media/libyuv/libyuv/include/libyuv/scale_row.h ++++ media/libyuv/libyuv/include/libyuv/scale_row.h +@@ -19,8 +19,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 Property changes on: head/www/firefox/files/patch-bug1414440 ___________________________________________________________________ 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: head/www/firefox-esr/Makefile =================================================================== --- head/www/firefox-esr/Makefile (revision 453436) +++ head/www/firefox-esr/Makefile (revision 453437) @@ -1,78 +1,78 @@ # Created by: Alan Eldridge # $FreeBSD$ PORTNAME= firefox DISTVERSION= 52.4.1 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build1/source PKGNAMESUFFIX= -esr MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.13.1:devel/nspr \ nss>=3.29.5:security/nss \ libevent>=2.0.21_2:devel/libevent \ harfbuzz>=1.4.1:print/harfbuzz \ graphite2>=1.3.8:graphics/graphite2 \ png>=1.6.28:graphics/png \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.17.0:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ zip:archivers/zip # soundtouch>=1.9.0:audio/soundtouch \ LIB_DEPENDS= libv4l2.so:multimedia/libv4l USE_GECKO= gecko CPE_PRODUCT= ${PORTNAME}_esr CONFLICTS_INSTALL= firefox-[0-9]* MOZ_PKGCONFIG_FILES= # empty USE_MOZILLA= -soundtouch MOZILLA_NAME= Firefox USE_GL= gl USES= tar:xz FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding OPTIONS_DEFINE= RUST OPTIONS_DEFAULT= BUNDLED_CAIRO GTK2 OPTIONS_SINGLE+= TOOLKIT OPTIONS_SINGLE_TOOLKIT= GTK2 GTK3 .include "${.CURDIR}/../../www/firefox/Makefile.options" WRKSRC:= ${WRKDIR}/${PORTNAME}-${DISTVERSION}esr post-extract: @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON}|' -e 's|@MOZILLA@|${MOZILLA}|' \ -e 's|@MOZILLA_NAME@|${MOZILLA_NAME}|' \ <${FILESDIR}/firefox.desktop.in >${WRKDIR}/${MOZILLA}.desktop 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} ${WRKDIR}/${MOZILLA}.desktop ${STAGEDIR}${PREFIX}/share/applications/ ${LN} -sf ${FIREFOX_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${FIREFOX_ICON} .include Index: head/www/firefox-esr/files/patch-bug1414440 =================================================================== --- head/www/firefox-esr/files/patch-bug1414440 (nonexistent) +++ head/www/firefox-esr/files/patch-bug1414440 (revision 453437) @@ -0,0 +1,72 @@ +Build libyuv with SIMD optimizations on Linux x86. + +diff --git media/libyuv/include/libyuv/compare_row.h media/libyuv/include/libyuv/compare_row.h +index 7abc2d4aef8f..161c12fa1b83 100644 +--- media/libyuv/include/libyuv/compare_row.h ++++ media/libyuv/include/libyuv/compare_row.h +@@ -18,8 +18,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/planar_functions.h media/libyuv/include/libyuv/planar_functions.h +index 040839c211b1..0d672dec96d6 100644 +--- media/libyuv/include/libyuv/planar_functions.h ++++ media/libyuv/include/libyuv/planar_functions.h +@@ -719,8 +719,7 @@ int I420Interpolate(const uint8* src0_y, + int height, + int interpolation); + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/rotate_row.h media/libyuv/include/libyuv/rotate_row.h +index 2c51584eee8b..73bbe8ef7ad4 100644 +--- media/libyuv/include/libyuv/rotate_row.h ++++ media/libyuv/include/libyuv/rotate_row.h +@@ -18,8 +18,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/row.h media/libyuv/include/libyuv/row.h +index f74bd9f7d17a..3bdfb75fc160 100644 +--- media/libyuv/include/libyuv/row.h ++++ media/libyuv/include/libyuv/row.h +@@ -30,8 +30,7 @@ extern "C" { + free(var##_mem); \ + var = 0 + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/scale_row.h media/libyuv/include/libyuv/scale_row.h +index edb46cc8c647..fe78a80f81bd 100644 +--- media/libyuv/include/libyuv/scale_row.h ++++ media/libyuv/include/libyuv/scale_row.h +@@ -19,8 +19,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 Property changes on: head/www/firefox-esr/files/patch-bug1414440 ___________________________________________________________________ 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: head/www/seamonkey/Makefile =================================================================== --- head/www/seamonkey/Makefile (revision 453436) +++ head/www/seamonkey/Makefile (revision 453437) @@ -1,90 +1,90 @@ # Created by: eivind/dima/jseger # $FreeBSD$ PORTNAME= seamonkey DISTVERSION= 2.49.1 -PORTREVISION= 3 +PORTREVISION= 4 MOZILLA_VER= 52 # above + 3 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build4/source DISTFILES= ${PORTNAME}-${DISTVERSION}.source${EXTRACT_SUFX} EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= The open source, standards compliant web browser BUILD_DEPENDS= nspr>=4.13.1:devel/nspr \ nss>=3.28.6:security/nss \ libevent>=2.0.21_2:devel/libevent \ harfbuzz>=1.4.1:print/harfbuzz \ graphite2>=1.3.8:graphics/graphite2 \ png>=1.6.25:graphics/png \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.17.0:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ zip:archivers/zip # soundtouch>=1.9.0:audio/soundtouch \ LIB_DEPENDS= libv4l2.so:multimedia/libv4l SSP_UNSAFE= yes USE_GECKO= gecko USE_GL= gl USES= tar:xz MOZ_PIS_SCRIPTS= moz_pis_S50cleanhome MOZ_EXTENSIONS= default MOZ_OPTIONS+= --enable-application=suite USE_MOZILLA= -soundtouch MOZ_PKGCONFIG_FILES= OPTIONS_DEFINE= LDAP LIGHTNING RUST OPTIONS_SINGLE= TOOLKIT OPTIONS_SINGLE_TOOLKIT= GTK2 GTK3 OPTIONS_DEFAULT=CANBERRA GTK2 LDAP LIGHTNING LDAP_DESC?= LDAP support for Mailnews .include "${.CURDIR}/../../www/firefox/Makefile.options" .include WRKSRC:= ${WRKDIR}/${PORTNAME}-${DISTVERSION} MOZSRC:= ${WRKSRC}/mozilla .if ! ${PORT_OPTIONS:MLDAP} MOZ_OPTIONS+= --disable-ldap .else MOZ_OPTIONS+= --enable-ldap .endif .if ${PORT_OPTIONS:MLIGHTNING} MOZ_OPTIONS+= --enable-calendar .else MOZ_OPTIONS+= --disable-calendar .endif post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/suite/app/nsSuiteApp.cpp @${REINPLACE_CMD} -e '/accessibility.typeaheadfind.enablesound/s/true/false/' \ ${WRKSRC}/mozilla/modules/libpref/init/all.js @${SED} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ < ${FILESDIR}/seamonkey.desktop.in > \ ${WRKDIR}/${MOZILLA}.desktop pre-configure: (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${MOZSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${MOZSRC}/js/src/ && ${LOCALBASE}/bin/autoconf-2.13) post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA}.desktop ${STAGEDIR}${PREFIX}/share/applications/ ${LN} -sf ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/${MOZILLA}.png .include Index: head/www/seamonkey/files/patch-bug1414440 =================================================================== --- head/www/seamonkey/files/patch-bug1414440 (nonexistent) +++ head/www/seamonkey/files/patch-bug1414440 (revision 453437) @@ -0,0 +1,72 @@ +Build libyuv with SIMD optimizations on Linux x86. + +diff --git media/libyuv/include/libyuv/compare_row.h media/libyuv/include/libyuv/compare_row.h +index 7abc2d4aef8f..161c12fa1b83 100644 +--- mozilla/media/libyuv/include/libyuv/compare_row.h ++++ mozilla/media/libyuv/include/libyuv/compare_row.h +@@ -18,8 +18,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/planar_functions.h media/libyuv/include/libyuv/planar_functions.h +index 040839c211b1..0d672dec96d6 100644 +--- mozilla/media/libyuv/include/libyuv/planar_functions.h ++++ mozilla/media/libyuv/include/libyuv/planar_functions.h +@@ -719,8 +719,7 @@ int I420Interpolate(const uint8* src0_y, + int height, + int interpolation); + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/rotate_row.h media/libyuv/include/libyuv/rotate_row.h +index 2c51584eee8b..73bbe8ef7ad4 100644 +--- mozilla/media/libyuv/include/libyuv/rotate_row.h ++++ mozilla/media/libyuv/include/libyuv/rotate_row.h +@@ -18,8 +18,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/row.h media/libyuv/include/libyuv/row.h +index f74bd9f7d17a..3bdfb75fc160 100644 +--- mozilla/media/libyuv/include/libyuv/row.h ++++ mozilla/media/libyuv/include/libyuv/row.h +@@ -30,8 +30,7 @@ extern "C" { + free(var##_mem); \ + var = 0 + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 +diff --git media/libyuv/include/libyuv/scale_row.h media/libyuv/include/libyuv/scale_row.h +index edb46cc8c647..fe78a80f81bd 100644 +--- mozilla/media/libyuv/include/libyuv/scale_row.h ++++ mozilla/media/libyuv/include/libyuv/scale_row.h +@@ -19,8 +19,7 @@ namespace libyuv { + extern "C" { + #endif + +-#if defined(__pnacl__) || defined(__CLR_VER) || \ +- (defined(__i386__) && !defined(__SSE2__)) ++#if defined(__pnacl__) || defined(__CLR_VER) + #define LIBYUV_DISABLE_X86 + #endif + // MemorySanitizer does not support assembly code yet. http://crbug.com/344505 Property changes on: head/www/seamonkey/files/patch-bug1414440 ___________________________________________________________________ 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