aboutsummaryrefslogtreecommitdiffstats
path: root/src/m
diff options
context:
space:
mode:
authorRichard M. Stallman1993-08-13 21:40:37 +0000
committerRichard M. Stallman1993-08-13 21:40:37 +0000
commitb2fe4ec62d3469f47cdc6bd912d96d9b14d04e46 (patch)
tree90311a3a733101982c28657955a13394a8ed0f92 /src/m
parente1111f28fbf42c9231af3323e0a03bb374a33678 (diff)
downloademacs-b2fe4ec62d3469f47cdc6bd912d96d9b14d04e46.tar.gz
emacs-b2fe4ec62d3469f47cdc6bd912d96d9b14d04e46.zip
(START_FILES, LIB_STANDARD): Don't define if USG5_4.
(DEFAULT_ENTRY_ADDRESS): Likewise. (UNEXEC): Use unexelfsgi.o if USG5_4.
Diffstat (limited to 'src/m')
-rw-r--r--src/m/iris4d.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/m/iris4d.h b/src/m/iris4d.h
index 3af653f5aca..2b0ab628bf1 100644
--- a/src/m/iris4d.h
+++ b/src/m/iris4d.h
@@ -119,7 +119,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
119/* This machine requires completely different unexec code 119/* This machine requires completely different unexec code
120 which lives in a separate file. Specify the file name. */ 120 which lives in a separate file. Specify the file name. */
121 121
122#ifdef USG5_4
123#undef UNEXEC
124#define UNEXEC unexelfsgi.o
125#else
122#define UNEXEC unexmips.o 126#define UNEXEC unexmips.o
127#endif
123 128
124#define TEXT_START 0x400000 129#define TEXT_START 0x400000
125 130
@@ -145,6 +150,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
145 you define _BSD_COMPAT, -or- you call `BSDgetpgrp' explicitly. 150 you define _BSD_COMPAT, -or- you call `BSDgetpgrp' explicitly.
146 Emacs does the latter. */ 151 Emacs does the latter. */
147 152
153#ifndef USG5_4
148#ifdef HAVE_CRTN 154#ifdef HAVE_CRTN
149/* Must define START-FILES so that the linker can find /usr/lib/crt0.o. */ 155/* Must define START-FILES so that the linker can find /usr/lib/crt0.o. */
150#define START_FILES pre-crt0.o /usr/lib/crt1.o 156#define START_FILES pre-crt0.o /usr/lib/crt1.o
@@ -155,6 +161,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
155#define DEFAULT_ENTRY_ADDRESS start 161#define DEFAULT_ENTRY_ADDRESS start
156#define LIB_STANDARD -lc 162#define LIB_STANDARD -lc
157#endif 163#endif
164#endif
158 165
159/* Use terminfo instead of termcap. */ 166/* Use terminfo instead of termcap. */
160 167