add __alpha__ as supported cpu

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4298 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-05-30 12:32:17 +00:00
parent d25de6434b
commit 67c8370f50

View File

@ -51,7 +51,7 @@
// bit layout, but about floating-point NaN (etc.) bit patterns. // 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)
#define BOOST_BIG_ENDIAN #define BOOST_BIG_ENDIAN
#elif defined(__i386__) #elif defined(__i386__) || defined(__alpha__)
#define BOOST_LITTLE_ENDIAN #define BOOST_LITTLE_ENDIAN
#else #else
#error The file boost/detail/limits.hpp needs to be set up for your CPU type. #error The file boost/detail/limits.hpp needs to be set up for your CPU type.
@ -463,6 +463,3 @@ public:
// Local Variables: // Local Variables:
// mode:C++ // mode:C++
// End: // End: