From owner-svn-ports-head@freebsd.org Wed Oct 31 19:01:35 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 5126410E259D; Wed, 31 Oct 2018 19:01:35 +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 E88DB83DF1; Wed, 31 Oct 2018 19:01:34 +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 CAE4810851; Wed, 31 Oct 2018 19:01:34 +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 w9VJ1Yku076744; Wed, 31 Oct 2018 19:01:34 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9VJ1YGM076724; Wed, 31 Oct 2018 19:01:34 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810311901.w9VJ1YGM076724@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 31 Oct 2018 19:01:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483606 - head/www/firefox/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/www/firefox/files X-SVN-Commit-Revision: 483606 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.29 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, 31 Oct 2018 19:01:35 -0000 Author: jbeich Date: Wed Oct 31 19:01:34 2018 New Revision: 483606 URL: https://svnweb.freebsd.org/changeset/ports/483606 Log: www/firefox: unbreak with cbindgen 0.6.7 (after r483566) dist/include/nsStyleStruct.h:1896:3: error: unknown type name 'StyleFillRule', err: true dist/include/nsStyleStruct.h:2134:12: error: no type named 'StyleDisplay' in namespace 'mozilla', err: true PR: 229893 Reported by: Piotr Kubaj, cmt Obtained from: upstream Pointy hat to: jbeich Added: head/www/firefox/files/patch-bug1503401 (contents, props changed) Added: head/www/firefox/files/patch-bug1503401 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox/files/patch-bug1503401 Wed Oct 31 19:01:34 2018 (r483606) @@ -0,0 +1,29 @@ +commit b85791110fe6 +Author: Emilio Cobos Álvarez +Date: Tue Oct 30 22:21:52 2018 +0100 + + Keep mozilla-release building with newer cbindgen versions. +--- + servo/components/style/cbindgen.toml | 6 ++++++ + 1 file changed, 6 insertions(+) + +diff --git servo/components/style/cbindgen.toml servo/components/style/cbindgen.toml +index 46162e43db5e..49872e88b7d9 100644 +--- servo/components/style/cbindgen.toml ++++ servo/components/style/cbindgen.toml +@@ -24,10 +24,10 @@ derive_helper_methods = true + [export] + prefix = "Style" + include = [ +- "StyleAppearance", +- "StyleDisplay", +- "StyleDisplayMode", +- "StyleFillRule", +- "StylePathCommand" ++ "Appearance", ++ "Display", ++ "DisplayMode", ++ "FillRule", ++ "PathCommand" + ] + item_types = ["enums", "structs", "typedefs"]