From owner-svn-ports-all@freebsd.org Sat Sep 29 18:59:25 2018 Return-Path: Delivered-To: svn-ports-all@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 7FDD610A8C7D; Sat, 29 Sep 2018 18:59:25 +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 2691583B6F; Sat, 29 Sep 2018 18:59:25 +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 1BC8F275BE; Sat, 29 Sep 2018 18:59:25 +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 w8TIxO94066572; Sat, 29 Sep 2018 18:59:24 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8TIxOjS066571; Sat, 29 Sep 2018 18:59:24 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201809291859.w8TIxOjS066571@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 29 Sep 2018 18:59:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r480913 - branches/2018Q3/www/firefox X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q3/www/firefox X-SVN-Commit-Revision: 480913 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2018 18:59:25 -0000 Author: jbeich Date: Sat Sep 29 18:59:24 2018 New Revision: 480913 URL: https://svnweb.freebsd.org/changeset/ports/480913 Log: MFH: r480912 gecko: whitelist where DTRACE is enabled by default Userland probes are only supported on Tier1 architectures. Even though powerpc* should support dtrace -G may crash on C++ files built by GCC. DTRACE option is still exposed as long as dtrace(1) binary is present for easier debugging of libdtrace. PR: 221641 224271 Approved by: ports-secteam blanket Modified: branches/2018Q3/www/firefox/Makefile.options Directory Properties: branches/2018Q3/ (props changed) Modified: branches/2018Q3/www/firefox/Makefile.options ============================================================================== --- branches/2018Q3/www/firefox/Makefile.options Sat Sep 29 18:58:11 2018 (r480912) +++ branches/2018Q3/www/firefox/Makefile.options Sat Sep 29 18:59:24 2018 (r480913) @@ -4,7 +4,7 @@ OPTIONS_DEFINE+= BUNDLED_CAIRO CANBERRA DBUS DEBUG DT INTEGER_SAMPLES LIBPROXY \ OPTIMIZED_CFLAGS PROFILE TEST -OPTIONS_DEFAULT+= DBUS DTRACE FFMPEG GCONF OPTIMIZED_CFLAGS PROFILE \ +OPTIONS_DEFAULT+= DBUS FFMPEG GCONF OPTIMIZED_CFLAGS PROFILE \ ${OPTIONS_MULTI_AUDIO:NSNDIO} \ ${MACHINE_CPU:Msoftfp:C/.+/INTEGER_SAMPLES/} @@ -19,8 +19,11 @@ JACK_IMPLIES= ALSA OPTIONS_EXCLUDE+= DTRACE .endif -# ld(1) fails to link probes: Relocations in generic ELF (EM: 0) -OPTIONS_EXCLUDE_aarch64= DTRACE +# opensolaris/lib/libdtrace/common/dt_link.c: +# not implemented +# failed to allocate space for probe +OPTIONS_DEFAULT_amd64+= DTRACE +OPTIONS_DEFAULT_i386+= DTRACE BUNDLED_CAIRO_DESC?= Use bundled fork of cairo-1.9.5 CANBERRA_DESC?= Sound theme alerts