diff options
| author | Richard M. Stallman | 1993-07-25 06:34:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-25 06:34:47 +0000 |
| commit | 1c3d8eebf512a693b1a37970b44b67acf480c5aa (patch) | |
| tree | cc85e8789e1b54976b676306367fec0fa00fe87d /src | |
| parent | ff4c9993ec68fbe488c895da6cad99bccfd1f980 (diff) | |
| download | emacs-1c3d8eebf512a693b1a37970b44b67acf480c5aa.tar.gz emacs-1c3d8eebf512a693b1a37970b44b67acf480c5aa.zip | |
(LOCALTIME_CACHE): Defined.
(HAVE_SETSID): Defined.
(LIB_STANDARD): Override, adding $(GNULIB_VAR).
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/386bsd.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/s/386bsd.h b/src/s/386bsd.h index 2a68b0092a8..5ce2892345a 100644 --- a/src/s/386bsd.h +++ b/src/s/386bsd.h | |||
| @@ -3,6 +3,9 @@ | |||
| 3 | /* Get most of the stuff from bsd4.3 */ | 3 | /* Get most of the stuff from bsd4.3 */ |
| 4 | #include "bsd4-3.h" | 4 | #include "bsd4-3.h" |
| 5 | 5 | ||
| 6 | #undef LIB_STANDARD | ||
| 7 | #define LIB_STANDARD -lc $(GNULIB_VAR) | ||
| 8 | |||
| 6 | /* The following should be set to /netbsd if you are running netbsd > 0.8 | 9 | /* The following should be set to /netbsd if you are running netbsd > 0.8 |
| 7 | Or just link /netbsd -> /386bsd */ | 10 | Or just link /netbsd -> /386bsd */ |
| 8 | #undef KERNEL_FILE | 11 | #undef KERNEL_FILE |
| @@ -19,3 +22,9 @@ | |||
| 19 | 22 | ||
| 20 | /* This affects a declaration in xrdb.c. */ | 23 | /* This affects a declaration in xrdb.c. */ |
| 21 | #define DECLARE_GETPWUID_WITH_UID_T | 24 | #define DECLARE_GETPWUID_WITH_UID_T |
| 25 | |||
| 26 | /* Reread the time zone on startup. */ | ||
| 27 | #define LOCALTIME_CACHE | ||
| 28 | |||
| 29 | /* rich@lamprey.utmb.edu says needed for job control in subshells. */ | ||
| 30 | #define HAVE_SETSID | ||