summaryrefslogtreecommitdiff
path: root/src/m/ns32000.h
diff options
context:
space:
mode:
authorCharles Hannum <mycroft@gnu.org>1994-07-22 18:28:20 +0000
committerCharles Hannum <mycroft@gnu.org>1994-07-22 18:28:20 +0000
commitd2d1c35d750a5e552c797993a1d33b5cd796368d (patch)
tree96d59ccfd3cba26de79449f9a12862dea7e583b4 /src/m/ns32000.h
parent8c04464485c27c51631be6e5ed80fc2a8c8f1b3e (diff)
downloademacs-d2d1c35d750a5e552c797993a1d33b5cd796368d.tar.gz
Changes to support NetBSD.
Diffstat (limited to 'src/m/ns32000.h')
-rw-r--r--src/m/ns32000.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/m/ns32000.h b/src/m/ns32000.h
index a05a612b6ab..e45f223211c 100644
--- a/src/m/ns32000.h
+++ b/src/m/ns32000.h
@@ -96,7 +96,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
in the file alloca.s should be used. */
/* #define C_ALLOCA */
-/* #define HAVE_ALLOCA */
+#ifdef __NetBSD__
+#define HAVE_ALLOCA
+#endif
/* Define NO_REMAP if memory segmentation makes it not work well
to change the boundary between the text section and data section
@@ -109,8 +111,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define STACK_DIRECTION -1
+#ifndef __NetBSD__
#define EXEC_MAGIC 0410
#define PURESIZE 140000
#define START_FILES pre-crt0.o /lib/crt0.o
+#endif