From owner-svn-ports-head@FreeBSD.ORG Sat Feb 23 09:21:12 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1073ACE3; Sat, 23 Feb 2013 09:21:12 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 02FE92CB; Sat, 23 Feb 2013 09:21:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1N9LBdh038110; Sat, 23 Feb 2013 09:21:11 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1N9LB2O038108; Sat, 23 Feb 2013 09:21:11 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201302230921.r1N9LB2O038108@svn.freebsd.org> From: Florian Smeets Date: Sat, 23 Feb 2013 09:21:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312802 - in head/www: firefox firefox-esr X-SVN-Group: ports-head 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.14 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: Sat, 23 Feb 2013 09:21:12 -0000 Author: flo Date: Sat Feb 23 09:21:11 2013 New Revision: 312802 URL: http://svnweb.freebsd.org/changeset/ports/312802 Log: Clang does not support Profile-Guided Optimization yet. Submitted by: Jan Beich Reported by: dim Modified: head/www/firefox-esr/Makefile head/www/firefox/Makefile Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Sat Feb 23 09:16:01 2013 (r312801) +++ head/www/firefox-esr/Makefile Sat Feb 23 09:21:11 2013 (r312802) @@ -68,6 +68,7 @@ CFLAGS+= -mminimal-toc .endif .if ${PORT_OPTIONS:MPGO} +USE_GCC?= any USE_DISPLAY= yes .include "${PORTSDIR}/Mk/bsd.python.mk" Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Sat Feb 23 09:16:01 2013 (r312801) +++ head/www/firefox/Makefile Sat Feb 23 09:21:11 2013 (r312802) @@ -69,6 +69,7 @@ CFLAGS+= -mminimal-toc .endif .if ${PORT_OPTIONS:MPGO} +USE_GCC?= any USE_DISPLAY= yes .include "${PORTSDIR}/Mk/bsd.python.mk"