Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r48838 - trunk/boost/detail
From: pdimov_at_[hidden]
Date: 2008-09-17 18:53:53


Author: pdimov
Date: 2008-09-17 18:53:53 EDT (Wed, 17 Sep 2008)
New Revision: 48838
URL: http://svn.boost.org/trac/boost/changeset/48838

Log:
Fix #2263. See also [48835].
Text files modified:
   trunk/boost/detail/spinlock.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/detail/spinlock.hpp
==============================================================================
--- trunk/boost/detail/spinlock.hpp (original)
+++ trunk/boost/detail/spinlock.hpp 2008-09-17 18:53:53 EDT (Wed, 17 Sep 2008)
@@ -32,7 +32,7 @@
 
 #if defined(__GNUC__) && defined( __arm__ ) && !defined( __thumb__ )
 # include <boost/detail/spinlock_gcc_arm.hpp>
-#elif defined(__GNUC__) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 401 ) && !defined( __arm__ ) && ( !defined( __INTEL_COMPILER ) || defined( __ia64__ ) )
+#elif defined(__GNUC__) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 401 ) && !defined( __arm__ ) && !defined( __hppa ) && ( !defined( __INTEL_COMPILER ) || defined( __ia64__ ) )
 # include <boost/detail/spinlock_sync.hpp>
 #elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
 # include <boost/detail/spinlock_w32.hpp>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk