blob: 388e14598f3e9277674f2ae92d6bcb558c38caaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
$NetBSD: patch-bc,v 1.2 2005/12/01 18:13:24 wiz Exp $
--- src/m/alpha.h.orig 1995-02-17 08:47:36.000000000 +0100
+++ src/m/alpha.h
@@ -108,7 +108,9 @@ NOTE-START
in the file alloca.s should be used. */
#define HAVE_ALLOCA
+#ifndef __NetBSD__
#define SYSTEM_MALLOC
+#endif
/* Define NO_REMAP if memory segmentation makes it not work well
to change the boundary between the text section and data section
@@ -134,7 +136,9 @@ NOTE-START
#define START_FILES pre-crt0.o
+#ifndef __NetBSD__
#define UNEXEC unexmips.o
+#endif
#define PNTR_COMPARISON_TYPE unsigned long
@@ -149,7 +153,9 @@ extern unsigned long _edata;
#define DATA_END &_edata
#define ORDINARY_LINK
+#ifndef __NetBSD__
#define LD_SWITCH_SYSTEM
+#endif
#define LIBS_DEBUG
/* PURESIZE should be defined in puresize.h. */
|