Actions
Bug #3551
closedphoenix-Headers in new Boost moved
Description
Hi,
(in cross-compiling I've noticed that...)
In wt-3.3.3 the following changes are needed:
In wt-3.3.3/src/Wt/Json/Parser.C
line 27 change
#include <boost/spirit/home/phoenix/statement/throw.hpp>
to
#include <boost/phoenix/statement/throw.hpp>
@
@
In wt-3.3.3/src/Wt/Render/CssParser.C
line 37 change
#include <boost/spirit/home/phoenix.hpp>
to
#include <boost/phoenix.hpp>
and also change around line 160 (ref) from
template< typename, typename, typename, typename, typename > // Phoenix v2
struct result { typedef void type;};
ErrorReporting(CssGrammer< Iterator >* grammer)
: grammer_(grammer)
{}
to
/******template< typename, typename, typename, typename, typename > // Phoenix v2 */
/******struct result { typedef void type;}; */
typedef void result_type; /****** ADD THIS LINE */
ErrorReporting(CssGrammer< Iterator >* grammer)
: grammer_(grammer)
{}
@
@
In wt-3.3.3/src/Wt/Dbo/SqlQueryParse.C
line 23 change
#include <boost/spirit/home/phoenix/statement/throw.hpp>
to
#include <boost/phoenix/statement/throw.hpp>
Updated by Mathieu Vadnais about 10 years ago
Is this a new issue or is it related to this one http://redmine.webtoolkit.eu/issues/3530#change-9911 ?
Updated by Peter nicesw123 about 10 years ago
Ah, I see some of it's fixed up in the lastest Code:
src/Wt/Json/Parser.C
src/Wt/Render/CssParser.C
src/Wt/Dbo/SqlQueryParse.C#L26
Still missing (in Github at least...) is: Issue 3530 - note 6 - this is not yet in -> see src/Wt/Render/CssParser.C
Updated by Wim Dumon about 10 years ago
It seems like I forgot to push something. Will appear on github soon.
Wim.
Updated by Koen Deforche about 10 years ago
- Status changed from New to Resolved
- Assignee set to Wim Dumon
- Target version set to 3.3.4
Updated by Koen Deforche about 10 years ago
- Status changed from Resolved to Closed
Actions