summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2016-12-31 16:06:28 +0000
committerJan Beich <jbeich@FreeBSD.org>2016-12-31 16:06:28 +0000
commit815bd83dbaea9b3992e8ae9c9cb3d8c8eaea08e1 (patch)
tree3e3fa217d23dbafec9f9baafbb5ef1d623113732
parentdevel/git-cinnabar: update to 0.4.0.r2.24 (diff)
www/wt: unbreak with boost 1.639-eol
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)
Notes
Notes: svn path=/head/; revision=430248 svn path=/tags/RELEASE_9_EOL/; revision=430249; tag=9-eol
-rw-r--r--www/wt/Makefile2
-rw-r--r--www/wt/files/patch-src_Wt_Render_CssParser.C13
2 files changed, 14 insertions, 1 deletions
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<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())
+ );
+
+ }