Ticket #2358: patch

File patch, 750 bytes (added by bangerth@…, 14 years ago)

Patch to detail/spinlock.hpp

  • contrib/boost/include/boost/detail/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 ) \
     36   && ( !defined(__INTEL_COMPILER) || defined(__ia64) )
    3637#  include <boost/detail/spinlock_sync.hpp>
    3738#elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
    3839#  include <boost/detail/spinlock_w32.hpp>