From owner-svn-ports-head@freebsd.org Wed Dec 7 09:57:27 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E03DC6A05A; Wed, 7 Dec 2016 09:57:27 +0000 (UTC) (envelope-from cpm@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 mx1.freebsd.org (Postfix) with ESMTPS id 232F115EF; Wed, 7 Dec 2016 09:57:27 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB79vQ9P089659; Wed, 7 Dec 2016 09:57:26 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB79vQ55089657; Wed, 7 Dec 2016 09:57:26 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201612070957.uB79vQ55089657@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Wed, 7 Dec 2016 09:57:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428044 - in head/www/chromium: . files 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.23 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: Wed, 07 Dec 2016 09:57:27 -0000 Author: cpm Date: Wed Dec 7 09:57:25 2016 New Revision: 428044 URL: https://svnweb.freebsd.org/changeset/ports/428044 Log: www/chromium: Fix build on 10.1-RELEASE Unbreak build on 10.1-RELEASE after r426855 Submitted by: cpm Reviewed by: chromium (rene) Approved by: chromium (rene), feld (mentor, explicit) MFH: 2016Q4 Differential Revision: D8699 Modified: head/www/chromium/Makefile head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Wed Dec 7 09:51:26 2016 (r428043) +++ head/www/chromium/Makefile Wed Dec 7 09:57:25 2016 (r428044) @@ -191,7 +191,8 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch- .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1002000 BUILD_DEPENDS+= ${LOCALBASE}/lib/c++/libstdc++.so:devel/libc++ -CXXFLAGS+= -stdlib=libc++ -isystem ${LOCALBASE}/include/c++/v1 +GN_ARGS+= extra_cxxflags="-stdlib=libc++ -isystem ${LOCALBASE}/include/c++/v1" \ + extra_ldflags="-L${LOCALBASE}/lib" .endif .if ${OSVERSION} < 1100000 Modified: head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni ============================================================================== --- head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni Wed Dec 7 09:51:26 2016 (r428043) +++ head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni Wed Dec 7 09:57:25 2016 (r428044) @@ -1,6 +1,18 @@ ---- build/toolchain/gcc_toolchain.gni.orig 2016-10-06 04:02:08.000000000 +0300 -+++ build/toolchain/gcc_toolchain.gni 2016-10-13 10:28:11.777849000 +0300 -@@ -453,14 +453,28 @@ +--- build/toolchain/gcc_toolchain.gni.orig 2016-11-10 20:02:09 UTC ++++ build/toolchain/gcc_toolchain.gni +@@ -10,6 +10,11 @@ import("//build/toolchain/cc_wrapper.gni + import("//build/toolchain/goma.gni") + import("//build/toolchain/toolchain.gni") + ++declare_args() { ++ extra_cxxflags = "" ++ extra_ldflags = "" ++} ++ + # This template defines a toolchain for something that works like gcc + # (including clang). + # +@@ -453,14 +458,28 @@ template("clang_toolchain") { } gcc_toolchain(target_name) {