From 45165538c5b4c2bd4536aedc01a1e758aaa19ae2 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Tue, 13 May 1997 22:13:33 +0000 Subject: [PATCH] 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. --- src/include/port/dgux.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/include/port/dgux.h b/src/include/port/dgux.h index a004c2928a..0d2f99a6fd 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 + -- 2.11.0