|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r57049 - branches/release/boost/detail
From: troy_at_[hidden]
Date: 2009-10-21 14:07:46
Author: troy
Date: 2009-10-21 14:07:45 EDT (Wed, 21 Oct 2009)
New Revision: 57049
URL: http://svn.boost.org/trac/boost/changeset/57049
Log:
Merge to release, fix for fix in r35591:
sometimes __hppa is on PA-RISC but __hpux isn't
(e.g. on linux)
Fixes ticket #3537
Text files modified:
branches/release/boost/detail/endian.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/release/boost/detail/endian.hpp
==============================================================================
--- branches/release/boost/detail/endian.hpp (original)
+++ branches/release/boost/detail/endian.hpp 2009-10-21 14:07:45 EDT (Wed, 21 Oct 2009)
@@ -50,7 +50,7 @@
# define BOOST_BYTE_ORDER 1234
#elif defined(__sparc) || defined(__sparc__) \
|| defined(_POWER) || defined(__powerpc__) \
- || defined(__ppc__) || defined(__hpux) \
+ || defined(__ppc__) || defined(__hpux) || defined(__hppa) \
|| defined(_MIPSEB) || defined(_POWER) \
|| defined(__s390__)
# define BOOST_BIG_ENDIAN
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