From: Marc G. Fournier Date: Tue, 13 May 1997 22:13:33 +0000 (+0000) Subject: From: "Brian E. Gallew" X-Git-Tag: REL6_1~176 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=45165538c5b4c2bd4536aedc01a1e758aaa19ae2;p=thirdparty%2Fpostgresql.git From: "Brian E. Gallew" Subject: [PORTS] minor fix for DGUX port src/include/port/dgux.h needs the following three lines appended: #ifndef BYTE_ORDER #define BYTE_ORDER BIG_ENDIAN #endif I believe this to be correct for DG/UX on M88k processors. I don't have one of the new Intel-based boxes to check on. --- diff --git a/src/include/port/dgux.h b/src/include/port/dgux.h index a004c2928a7..0d2f99a6fd6 100644 --- a/src/include/port/dgux.h +++ b/src/include/port/dgux.h @@ -1,2 +1,6 @@ -# define LINUX_ELF -# define USE_POSIX_SIGNALS +#define LINUX_ELF +#define USE_POSIX_SIGNALS +#ifndef BYTE_ORDER +# define BYTE_ORDER BIG_ENDIAN +#endif +