diff options
| author | Karl Heuer | 1996-09-17 02:56:22 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-09-17 02:56:22 +0000 |
| commit | 488b7cb38fdeb47e67b0f6e8edd10e01cbc55595 (patch) | |
| tree | e0f6faaf3405d166a9aa04acc02cf258d776f2b5 /src | |
| parent | e397a0172fe822eb80080184f5961a26916c9626 (diff) | |
| download | emacs-488b7cb38fdeb47e67b0f6e8edd10e01cbc55595.tar.gz emacs-488b7cb38fdeb47e67b0f6e8edd10e01cbc55595.zip | |
Replace symbol BSD with BSD_SYSTEM.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 6 | ||||
| -rw-r--r-- | src/emacs.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index c34355dcdf2..57fa2f22c39 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -137,11 +137,11 @@ CC = C_COMPILER | |||
| 137 | 137 | ||
| 138 | /* Some s/SYSTEM.h files define this to request special switches in ld. */ | 138 | /* Some s/SYSTEM.h files define this to request special switches in ld. */ |
| 139 | #ifndef LD_SWITCH_SYSTEM | 139 | #ifndef LD_SWITCH_SYSTEM |
| 140 | #if !defined (__GNUC__) && (defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF))) | 140 | #if !defined (__GNUC__) && (defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF))) |
| 141 | #define LD_SWITCH_SYSTEM -X | 141 | #define LD_SWITCH_SYSTEM -X |
| 142 | #else /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */ | 142 | #else /* ! defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)) */ |
| 143 | #define LD_SWITCH_SYSTEM | 143 | #define LD_SWITCH_SYSTEM |
| 144 | #endif /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */ | 144 | #endif /* ! defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)) */ |
| 145 | #endif /* LD_SWITCH_SYSTEM */ | 145 | #endif /* LD_SWITCH_SYSTEM */ |
| 146 | 146 | ||
| 147 | /* Some m/MACHINE.h files define this to request special switches in ld. */ | 147 | /* Some m/MACHINE.h files define this to request special switches in ld. */ |
diff --git a/src/emacs.c b/src/emacs.c index 5d7dd7202f0..4aa3f5d620d 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -32,7 +32,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 32 | #include <ssdef.h> | 32 | #include <ssdef.h> |
| 33 | #endif | 33 | #endif |
| 34 | 34 | ||
| 35 | #ifdef BSD | 35 | #ifdef BSD_SYSTEM |
| 36 | #include <sys/ioctl.h> | 36 | #include <sys/ioctl.h> |
| 37 | #endif | 37 | #endif |
| 38 | 38 | ||