Date: Sat, 31 Dec 2016 16:06:28 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430140 - in head/www/wt: . files Message-ID: <201612311606.uBVG6SNS069269@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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<F, A0 , A1 , A2 , A3 , A4>::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<Iterator>::CssGrammer() + on_error<qi::fail> + ( + 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()) + ); + + }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612311606.uBVG6SNS069269>