Ticket #2000: spinlock.patch

File spinlock.patch, 609 bytes (added by Anthony Williams, 14 years ago)

Patch for boost/detail/spinlock.hpp

  • spinlock.hpp

     
    3232
    3333#if defined(__GNUC__) && defined( __arm__ )
    3434#  include <boost/detail/spinlock_gcc_arm.hpp>
    35 #elif defined(__GNUC__) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 401 )
     35#elif defined(__GNUC__) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 401 ) && !defined(BOOST_INTEL)
    3636#  include <boost/detail/spinlock_sync.hpp>
    3737#elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
    3838#  include <boost/detail/spinlock_w32.hpp>