]> git.eshelyaron.com Git - emacs.git/commitdiff
(SYSV_SYSTEM_DIR): Define.
authorRoland McGrath <roland@gnu.org>
Fri, 11 Feb 1994 17:32:57 +0000 (17:32 +0000)
committerRoland McGrath <roland@gnu.org>
Fri, 11 Feb 1994 17:32:57 +0000 (17:32 +0000)
(BROKEN_START, TEXT_START, START_FILES, UNEXEC, RUN_TIME_REMAP): Define to
use unexsunos4.
(N_PAGSIZ, N_BSSSADDR, N_TRELOFF): Define so unexsunos4.c compiles.

src/s/netbsd.h

index ae7ea39cdcc3823a8454b91038490eadcfbbde73..c9466933e04c202121852bea198a38af7f5659b5 100644 (file)
 #define BSD4_2
 
 #define TERMCAP_NAME "/usr/share/misc/termcap"
+
+#define SYSV_SYSTEM_DIR
+
+/* These definitions should work for either dynamic or static linking,
+   whichever is the default for `cc -nostdlib'.  */
+#define BROKEN_START
+#define TEXT_START ({ extern void start() asm ("start"); &start; })
+#define START_FILES pre-crt0.o /usr/lib/crt0.o
+#define UNEXEC unexsunos4.o
+#define RUN_TIME_REMAP
+#define N_PAGSIZ(x) __LDPGSZ
+#define N_BSSADDR(x) (N_ALIGN(x, N_DATADDR(x)+x.a_data))
+#define N_TRELOFF(x) N_RELOFF(x)