diff options
| author | Paul Eggert | 1996-12-30 07:34:15 +0000 |
|---|---|---|
| committer | Paul Eggert | 1996-12-30 07:34:15 +0000 |
| commit | 22a8b81674876a700db26e237270c0fc6c66ae01 (patch) | |
| tree | 6eb5f7937839bd65c12804c9250ab4e4c8b2b48b /src | |
| parent | 3d5fc37b728bfd4fe6801ef9ae1e97e879f4cf13 (diff) | |
| download | emacs-22a8b81674876a700db26e237270c0fc6c66ae01.tar.gz emacs-22a8b81674876a700db26e237270c0fc6c66ae01.zip | |
(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')
| -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) | |||
| 477 | #define GETLOADAVG_OBJ getloadavg.o | 477 | #define GETLOADAVG_OBJ getloadavg.o |
| 478 | #endif | 478 | #endif |
| 479 | 479 | ||
| 480 | /* NEXTSTEP mktime wrongly ignores TZ. */ | 480 | /* NEXTSTEP mktime wrongly ignores TZ. |
| 481 | #if HAVE_MKTIME && ! defined (_NEXT_SOURCE) | 481 | SCO 3.2v4.2 mktime botches time arithmetic as used by display-time. */ |
| 482 | #if HAVE_MKTIME && ! defined (_NEXT_SOURCE) && ! defined (SCO_R4) | ||
| 482 | #define MKTIME_OBJ | 483 | #define MKTIME_OBJ |
| 483 | #else | 484 | #else |
| 484 | #define MKTIME_OBJ mktime.o | 485 | #define MKTIME_OBJ mktime.o |