Changeset 10600 for trunk/FACT++


Ignore:
Timestamp:
05/06/11 09:43:23 (13 years ago)
Author:
tbretz
Message:
Added fix because gcc 4.5 is not supported by boost 1.42 which are both part of natty.
Location:
trunk/FACT++/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/dataLogger.cc

    r10579 r10600  
    7070
    7171#include <boost/bind.hpp>
     72#if BOOST_VERSION<1440
     73#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 4))
     74#undef BOOST_HAS_RVALUE_REFS
     75#error test
     76#endif
     77#endif
    7278#include <boost/thread.hpp>
    7379
  • trunk/FACT++/src/dclient5.cc

    r10472 r10600  
    11#include <boost/bind.hpp>
     2#if BOOST_VERSION<1440
     3#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 4))
     4#undef BOOST_HAS_RVALUE_REFS
     5#error test
     6#endif
     7#endif
    28#include <boost/thread.hpp>
    39#include <boost/asio/error.hpp>
  • trunk/FACT++/src/scheduler.cc

    r10596 r10600  
    1 #define BOOST_DISABLE_ASSERTS 1
    21#include <boost/bind.hpp>
     2#if BOOST_VERSION<1440
     3#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 4))
     4#undef BOOST_HAS_RVALUE_REFS
     5#error test
     6#endif
     7#endif
    38#include <boost/thread.hpp>
    49#include <boost/regex.hpp>
Note: See TracChangeset for help on using the changeset viewer.