From owner-svn-ports-head@freebsd.org Mon Oct 1 21:37:16 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C96A10AB41B; Mon, 1 Oct 2018 21:37:16 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E6D048E2F3; Mon, 1 Oct 2018 21:37:15 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E1A182683C; Mon, 1 Oct 2018 21:37:15 +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 w91LbFNh024242; Mon, 1 Oct 2018 21:37:15 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w91LbFSf024233; Mon, 1 Oct 2018 21:37:15 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810012137.w91LbFSf024233@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 1 Oct 2018 21:37:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481071 - in head: Mk mail/thunderbird www/firefox www/firefox-esr X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: Mk mail/thunderbird www/firefox www/firefox-esr X-SVN-Commit-Revision: 481071 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Oct 2018 21:37:16 -0000 Author: jbeich Date: Mon Oct 1 21:37:14 2018 New Revision: 481071 URL: https://svnweb.freebsd.org/changeset/ports/481071 Log: gecko: switch to clang70 Standardizing on one Clang version makes stability more predictable across supported FreeBSD versions. As a side effect performance may suffer some improvement. This also makes it easier to enable LTO as old LLD versions are more buggy. Modified: head/Mk/bsd.gecko.mk (contents, props changed) head/mail/thunderbird/Makefile (contents, props changed) head/www/firefox-esr/Makefile (contents, props changed) head/www/firefox/Makefile (contents, props changed) head/www/firefox/Makefile.options (contents, props changed) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Mon Oct 1 21:36:55 2018 (r481070) +++ head/Mk/bsd.gecko.mk Mon Oct 1 21:37:14 2018 (r481071) @@ -105,6 +105,14 @@ USE_XORG+= xcb LLVM_DEFAULT?= 70 BUILD_DEPENDS+= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} MOZ_EXPORT+= LLVM_CONFIG=llvm-config${LLVM_DEFAULT} +# Require newer Clang than what's in base system unless user opted out +. if ${CC} == cc && ${CXX} == c++ && exists(/usr/lib/libc++.so) +BUILD_DEPENDS+= ${LOCALBASE}/bin/clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} +CPP= ${LOCALBASE}/bin/clang-cpp${LLVM_DEFAULT} +CC= ${LOCALBASE}/bin/clang${LLVM_DEFAULT} +CXX= ${LOCALBASE}/bin/clang++${LLVM_DEFAULT} +USES:= ${USES:Ncompiler\:*} # XXX avoid warnings +. endif .endif .if ${MOZILLA_VER:R:R} >= 61 Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Mon Oct 1 21:36:55 2018 (r481070) +++ head/mail/thunderbird/Makefile Mon Oct 1 21:37:14 2018 (r481071) @@ -3,7 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 60.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Mon Oct 1 21:36:55 2018 (r481070) +++ head/www/firefox-esr/Makefile Mon Oct 1 21:37:14 2018 (r481071) @@ -3,7 +3,7 @@ PORTNAME= firefox DISTVERSION= 60.2.1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Mon Oct 1 21:36:55 2018 (r481070) +++ head/www/firefox/Makefile Mon Oct 1 21:37:14 2018 (r481071) @@ -3,7 +3,7 @@ PORTNAME= firefox DISTVERSION= 62.0.2 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: head/www/firefox/Makefile.options ============================================================================== --- head/www/firefox/Makefile.options Mon Oct 1 21:36:55 2018 (r481070) +++ head/www/firefox/Makefile.options Mon Oct 1 21:37:14 2018 (r481071) @@ -19,6 +19,11 @@ JACK_IMPLIES= ALSA OPTIONS_EXCLUDE+= DTRACE .endif +# dtrace -G crashes with clang++70 (conditional from Mk/bsd.gecko.mk) +.if ${CC} == cc && ${CXX} == c++ && exists(/usr/lib/libc++.so) +OPTIONS_EXCLUDE_FreeBSD_10= DTRACE +.endif + # opensolaris/lib/libdtrace/common/dt_link.c: # not implemented # failed to allocate space for probe