Commited patch from "Lars Gullik Bjønnes" <larsbj@lyx.org>

[SVN r14279]
This commit is contained in:
Dave Abrahams
2002-07-02 12:59:37 +00:00
parent 17dcb7eabb
commit a02e3a0b7e

View File

@ -49,9 +49,9 @@
// The macros are not named appropriately. We don't care about integer
// bit layout, but about floating-point NaN (etc.) bit patterns.
#if defined(__sparc) || defined(__sparc__) || defined(__powerpc__) || defined(__ppc__) || defined(__hppa) || defined(_MIPSEB)
#if defined(__sparc) || defined(__sparc__) || defined(__powerpc__) || defined(__ppc__) || defined(__hppa) || defined(_MIPSEB) || defined(_POWER)
#define BOOST_BIG_ENDIAN
#elif defined(__i386__)
#elif defined(__i386__) || defined(__alpha__)
#define BOOST_LITTLE_ENDIAN
#else
#error The file boost/detail/limits.hpp needs to be set up for your CPU type.