Bug 724818 - FTBFS due to boost rebase
Summary: FTBFS due to boost rebase
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: wesnoth
Version: rawhide
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Gwyn Ciesla
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks: 711845
TreeView+ depends on / blocked
 
Reported: 2011-07-21 21:45 UTC by Petr Machata
Modified: 2015-05-05 01:36 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2011-07-22 15:30:26 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)
Work around BOOST_FOREACH regression (2.44 KB, patch)
2011-07-21 21:45 UTC, Petr Machata
no flags Details | Diff

Description Petr Machata 2011-07-21 21:45:46 UTC
Created attachment 514578 [details]
Work around BOOST_FOREACH regression

Wesnoth fails to build as a result of boost rebase.  The root of the problem is described here: https://svn.boost.org/trac/boost/ticket/5279 .  In essence, GCC changed behavior and BOOST_FOREACH had to change the rvalue detection strategy to BOOST_FOREACH_RUN_TIME_CONST_RVALUE_DETECTION.  But this is written in sources for that detection strategy:

// Detect at run-time whether an expression yields an rvalue
// or an lvalue. This is 100% standard C++, but not all compilers
// accept it. Also, it causes FOREACH to break when used with non-
// copyable collection types.

Unfortunately, wesnoth indeed iterates over noncopyable collection objects, so we have to fall back to hand-rolled iteration.  The attached patch implements exactly this workaround.

Version-Release number of selected component (if applicable):
1.8.6-3

Comment 1 Gwyn Ciesla 2011-07-22 13:39:31 UTC
Sent upstream:

https://gna.org/bugs/index.php?18399

Comment 2 Gwyn Ciesla 2011-07-22 15:30:26 UTC
Built in rawhide.  Thanks!


Note You need to log in before you can comment on or make changes to this bug.