From: Paul Eggert Date: Tue, 31 Dec 1996 19:10:03 +0000 (+0000) Subject: (MKTIME_OBJ): X-Git-Tag: emacs-20.1~3147 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6009ff5ad357090abb5f3080ee5159049f92e8e0;p=emacs.git (MKTIME_OBJ): Use BROKEN_MKTIME instead of system-specific macros to determine whether mktime is broken. --- diff --git a/src/Makefile.in b/src/Makefile.in index 8af4538f33a..15f87f643bc 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -477,9 +477,7 @@ ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_MACHINE LD_SWITCH_SITE $(LDFLAGS) #define GETLOADAVG_OBJ getloadavg.o #endif -/* 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) +#if HAVE_MKTIME && ! BROKEN_MKTIME #define MKTIME_OBJ #else #define MKTIME_OBJ mktime.o