diff options
author | Paul Eggert <eggert@twinsun.com> | 1996-12-30 07:34:15 +0000 |
---|---|---|
committer | Paul Eggert <eggert@twinsun.com> | 1996-12-30 07:34:15 +0000 |
commit | 69f20fff5d963602d76fc58e87f094ef6254e34f (patch) | |
tree | 6a93bd17acc42549e2edc585bd7d29a466a477a2 /src/Makefile.in | |
parent | 73dcf21c7c21693988f218a6e18a3731301614bb (diff) | |
download | emacs-69f20fff5d963602d76fc58e87f094ef6254e34f.tar.gz |
(MKTIME_OBJ): Use our mktime instead of SCO 3.2v4.2's, since it
botches time arithmetic as used by display-time.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 1f186c57db7..8af4538f33a 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -477,8 +477,9 @@ ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_MACHINE LD_SWITCH_SITE $(LDFLAGS) #define GETLOADAVG_OBJ getloadavg.o #endif -/* NEXTSTEP mktime wrongly ignores TZ. */ -#if HAVE_MKTIME && ! defined (_NEXT_SOURCE) +/* NEXTSTEP mktime wrongly ignores TZ. + SCO 3.2v4.2 mktime botches time arithmetic as used by display-time. */ +#if HAVE_MKTIME && ! defined (_NEXT_SOURCE) && ! defined (SCO_R4) #define MKTIME_OBJ #else #define MKTIME_OBJ mktime.o |