From 815bd83dbaea9b3992e8ae9c9cb3d8c8eaea08e1 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Sat, 31 Dec 2016 16:06:28 +0000 Subject: 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) --- www/wt/Makefile | 2 +- www/wt/files/patch-src_Wt_Render_CssParser.C | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 www/wt/files/patch-src_Wt_Render_CssParser.C diff --git a/www/wt/Makefile b/www/wt/Makefile index 410ad2f5e1fb..73f6a67233b9 100644 --- a/www/wt/Makefile +++ b/www/wt/Makefile @@ -3,7 +3,7 @@ PORTNAME= wt PORTVERSION= 3.3.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MAINTAINER= info@babaei.net diff --git a/www/wt/files/patch-src_Wt_Render_CssParser.C b/www/wt/files/patch-src_Wt_Render_CssParser.C new file mode 100644 index 000000000000..fa9a0c8fe15b --- /dev/null +++ b/www/wt/files/patch-src_Wt_Render_CssParser.C @@ -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()) + ); + + } -- cgit v1.2.3