Changeset 906 – HoverRace

Changeset 906

Show
Ignore:
Timestamp:
03/10/10 13:28:19 (5 months ago)
Author:
zoogie
Message:

Fixed building Script::Core in Linux.
The X headers define "Bool" which breaks Boost.Foreach prior to Boost 1.40.
See:  https://svn.boost.org/trac/boost/ticket/3000

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/engine/Script/Core.cpp

    r902 r906  
    2525#include <iostream> 
    2626 
     27// The X headers define "Bool" with breaks Boost Foreach. 
     28// This workaround is only required for Boost < 1.40. 
     29#if !defined(_WIN32) && defined(Bool) 
     30#   undef Bool 
     31#endif 
    2732#include <boost/foreach.hpp> 
    2833