Add || defined(__ppc__) (Fabrice Truillot)

[SVN r10633]
This commit is contained in:
Beman Dawes
2001-07-16 16:57:05 +00:00
parent 00c899540f
commit 79f2762aa2

View File

@ -36,7 +36,7 @@
#include <cwchar> // for WCHAR_MIN and WCHAR_MAX
#include <boost/config.hpp>
#if defined(__sparc) || defined(__sparc__) || defined(__powerpc__) || defined(__hppa)
#if defined(__sparc) || defined(__sparc__) || defined(__powerpc__) || defined(__ppc__) || defined(__hppa)
#define BOOST_BIG_ENDIAN
#elif !defined(__i386__)
#error The file boost/detail/limits.hpp needs to be set up for your CPU type.