From owner-svn-ports-all@freebsd.org Sat Dec 31 16:06:30 2016 Return-Path: Delivered-To: svn-ports-all@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 180D2C994CC; Sat, 31 Dec 2016 16:06:30 +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 mx1.freebsd.org (Postfix) with ESMTPS id C1AF115EB; Sat, 31 Dec 2016 16:06:29 +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 uBVG6SHp069271; Sat, 31 Dec 2016 16:06:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBVG6SNS069269; Sat, 31 Dec 2016 16:06:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201612311606.uBVG6SNS069269@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 31 Dec 2016 16:06:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430140 - in head/www/wt: . 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-all@freebsd.org X-Mailman-Version: 2.1.23 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, 31 Dec 2016 16:06:30 -0000 Author: jbeich Date: Sat Dec 31 16:06:28 2016 New Revision: 430140 URL: https://svnweb.freebsd.org/changeset/ports/430140 Log: www/wt: unbreak with boost 1.63 In file included from wt-3.3.6/src/Wt/Render/CssParser.C:26: [...] /usr/local/include/boost/phoenix/function/detail/cpp03/preprocessed/function_operator_10.hpp:91:105: error: cannot initialize a parameter of type 'char *' with an lvalue of type 'char const[17]' return detail::expression::function_eval::make(f, a0 , a1 , a2 , a3 , a4); ^~ PR: 215599 Approved by: Mohammad S. Babaei (maintainer) Added: head/www/wt/files/patch-src_Wt_Render_CssParser.C (contents, props changed) Modified: head/www/wt/Makefile (contents, props changed) Modified: head/www/wt/Makefile ============================================================================== --- head/www/wt/Makefile Sat Dec 31 16:06:16 2016 (r430139) +++ head/www/wt/Makefile Sat Dec 31 16:06:28 2016 (r430140) @@ -3,7 +3,7 @@ PORTNAME= wt PORTVERSION= 3.3.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MAINTAINER= info@babaei.net Added: head/www/wt/files/patch-src_Wt_Render_CssParser.C ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/wt/files/patch-src_Wt_Render_CssParser.C Sat Dec 31 16:06:28 2016 (r430140) @@ -0,0 +1,13 @@ +https://github.com/emweb/wt/pull/102 + +--- src/Wt/Render/CssParser.C.orig 2016-07-13 12:27:26 UTC ++++ src/Wt/Render/CssParser.C +@@ -372,7 +372,7 @@ CssGrammer::CssGrammer() + on_error + ( + rulesetArray_, +- error_report(qi::_2, qi::_3, qi::_4, "styleSheetText()", fs_error_tag()) ++ error_report(qi::_2, qi::_3, qi::_4, phoenix::val("styleSheetText()"), fs_error_tag()) + ); + + }