diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-05-13 22:13:33 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-05-13 22:13:33 +0000 |
commit | 45165538c5b4c2bd4536aedc01a1e758aaa19ae2 (patch) | |
tree | 30bfbcff7e985763b65ee896257c22a61a37c385 /src | |
parent | f22f57ca35d5aba72c5a906bd82d1ebf9d2754c1 (diff) | |
download | postgresql-45165538c5b4c2bd4536aedc01a1e758aaa19ae2.tar.gz postgresql-45165538c5b4c2bd4536aedc01a1e758aaa19ae2.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/port/dgux.h | 8 |
1 files changed, 6 insertions, 2 deletions
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 + |