dbertoni 00/09/27 10:05:26
Modified: c/src/Include GCCDefinitions.hpp Log: Corrected error in platform detection. Revision Changes Path 1.11 +1 -1 xml-xalan/c/src/Include/GCCDefinitions.hpp Index: GCCDefinitions.hpp =================================================================== RCS file: /home/cvs/xml-xalan/c/src/Include/GCCDefinitions.hpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- GCCDefinitions.hpp 2000/09/27 16:38:32 1.10 +++ GCCDefinitions.hpp 2000/09/27 17:05:25 1.11 @@ -87,7 +87,7 @@ // This will change, depending upon the target platform. #if defined(SOLARIS) #define XALAN_BIG_ENDIAN -#elif defined(__I386__) +#elif defined(__i386__) #define XALAN_LITLE_ENDIAN #else #error XALAN_BIG_ENDIAN or XALAN_LITTLE_ENDIAN must be defined for this platform!
