fix boot support for alpha processor

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH-1_2_X@4300 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2002-05-30 16:47:27 +00:00
parent 150086a47e
commit 16eb48a0da
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-05-30 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* boost/detail/limits.hpp: add support for __alpha__
2001-09-07 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* boost/crc.hpp (detail): re-apply the cxx patch from 2001-06-07.

View File

@ -40,7 +40,7 @@
#if defined(__sparc) || defined(__sparc__) || defined(__powerpc__) || defined(__ppc__) || defined(__hppa) || defined(_MIPSEB)
#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.