From: "Brian E. Gallew" <geek+@cmu.edu>

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.
This commit is contained in:
Marc G. Fournier 1997-05-13 22:13:33 +00:00
parent f22f57ca35
commit 45165538c5
1 changed files with 6 additions and 2 deletions

View File

@ -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