##// END OF EJS Templates
sha1dc: Make sure SHA1DC_BIGENDIAN is set on Darwin/PowerPC...
Sevan Janiyan -
r51317:a0e39f5b default
parent child Browse files
Show More
@@ -102,6 +102,10 b''
102 */
102 */
103 #define SHA1DC_BIGENDIAN
103 #define SHA1DC_BIGENDIAN
104
104
105 #elif (defined(__APPLE__) && defined(__BIG_ENDIAN__) && !defined(SHA1DC_BIGENDIAN))
106 /* older gcc compilers which are the default on Apple PPC do not define __BYTE_ORDER__ */
107 #define SHA1DC_BIGENDIAN
108
105 /* Not under GCC-alike or glibc or *BSD or newlib or <processor whitelist> or <os whitelist> */
109 /* Not under GCC-alike or glibc or *BSD or newlib or <processor whitelist> or <os whitelist> */
106 #elif defined(SHA1DC_ON_INTEL_LIKE_PROCESSOR)
110 #elif defined(SHA1DC_ON_INTEL_LIKE_PROCESSOR)
107 /*
111 /*
General Comments 0
You need to be logged in to leave comments. Login now