1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-28 05:21:27 +03:00

Apparently HPUX runs the IA64 in big-endian mode.

This commit is contained in:
Tom Lane 2004-09-02 21:03:30 +00:00
parent 3475fd1178
commit cb79234307

View File

@ -16,8 +16,9 @@
#elif defined(__ia64) #elif defined(__ia64)
/* HPUX runs IA64 in big-endian mode */
#ifndef BYTE_ORDER #ifndef BYTE_ORDER
#define BYTE_ORDER LITTLE_ENDIAN #define BYTE_ORDER BIG_ENDIAN
#endif #endif
#else #else