diff options
| author | Richard M. Stallman | 1997-09-06 19:37:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-09-06 19:37:47 +0000 |
| commit | 61e630894af1c2adde2aa0a7018f00f2dcebafd4 (patch) | |
| tree | 196640138361666f7aa645beebb7d44b144f9045 /src/m | |
| parent | bd698e987e71743196eb0b317e8df3d39da228d9 (diff) | |
| download | emacs-61e630894af1c2adde2aa0a7018f00f2dcebafd4.tar.gz emacs-61e630894af1c2adde2aa0a7018f00f2dcebafd4.zip | |
Test __OpenBSD__ along with __NetBSD__.
Diffstat (limited to 'src/m')
| -rw-r--r-- | src/m/ns32000.h | 4 | ||||
| -rw-r--r-- | src/m/sparc.h | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/m/ns32000.h b/src/m/ns32000.h index 9fe59767089..345d4174a76 100644 --- a/src/m/ns32000.h +++ b/src/m/ns32000.h | |||
| @@ -88,7 +88,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 88 | in the file alloca.s should be used. */ | 88 | in the file alloca.s should be used. */ |
| 89 | 89 | ||
| 90 | /* #define C_ALLOCA */ | 90 | /* #define C_ALLOCA */ |
| 91 | #ifdef __NetBSD__ | 91 | #if defined (__NetBSD__) || defined (__OpenBSD__) |
| 92 | #define HAVE_ALLOCA | 92 | #define HAVE_ALLOCA |
| 93 | #endif | 93 | #endif |
| 94 | 94 | ||
| @@ -103,7 +103,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 103 | 103 | ||
| 104 | #define STACK_DIRECTION -1 | 104 | #define STACK_DIRECTION -1 |
| 105 | 105 | ||
| 106 | #ifndef __NetBSD__ | 106 | #if !defined (__NetBSD__) && !defined (__OpenBSD__) |
| 107 | #define EXEC_MAGIC 0410 | 107 | #define EXEC_MAGIC 0410 |
| 108 | 108 | ||
| 109 | #define PURESIZE 140000 | 109 | #define PURESIZE 140000 |
diff --git a/src/m/sparc.h b/src/m/sparc.h index 9b3ccf362a5..012826f0919 100644 --- a/src/m/sparc.h +++ b/src/m/sparc.h | |||
| @@ -103,8 +103,7 @@ NOTE-END */ | |||
| 103 | #define PURESIZE 130000 | 103 | #define PURESIZE 130000 |
| 104 | #endif | 104 | #endif |
| 105 | 105 | ||
| 106 | #ifndef __NetBSD__ | 106 | #if !defined (__NetBSD__) && !defined (__linux__) && !defined (__OpenBSD__) |
| 107 | #ifndef __linux__ | ||
| 108 | /* This really belongs in s/sun.h. */ | 107 | /* This really belongs in s/sun.h. */ |
| 109 | 108 | ||
| 110 | /* Say that the text segment of a.out includes the header; | 109 | /* Say that the text segment of a.out includes the header; |
| @@ -117,5 +116,4 @@ NOTE-END */ | |||
| 117 | 116 | ||
| 118 | #define A_TEXT_SEEK(HDR) (N_TXTOFF (hdr) + sizeof (hdr)) | 117 | #define A_TEXT_SEEK(HDR) (N_TXTOFF (hdr) + sizeof (hdr)) |
| 119 | 118 | ||
| 120 | #endif /* __linux__ */ | 119 | #endif /* not __NetBSD__ and not __linux__ and not __OpenBSD__ */ |
| 121 | #endif /* __NetBSD__ */ | ||