aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>1996-09-03 18:00:34 +0000
committerPaul Eggert <[email protected]>1996-09-03 18:00:34 +0000
commitfbd40e3256508963912b8b868a28591a66a85eda (patch)
treed821ccbbc0ab3e86ca1986d4122b3925c16e2494 /src
parent0d554bae8bc14814de65f6164c278d6036223b52 (diff)
(mktime): Define to emacs_mktime if HAVE_MKTIME && ! defined (_NEXT_SOURCE),
so that we don't attempt to redefine the libc mktime.
Diffstat (limited to 'src')
-rw-r--r--src/config.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/config.in b/src/config.in
index 54379cb96b..d91b36e5e1 100644
--- a/src/config.in
+++ b/src/config.in
@@ -180,7 +180,6 @@ Boston, MA 02111-1307, USA. */
#undef HAVE_SETSID
#undef HAVE_FPATHCONF
#undef HAVE_SELECT
-#undef HAVE_MKTIME
#undef HAVE_EUIDACCESS
#undef HAVE_GETPAGESIZE
#undef HAVE_TZSET
@@ -193,6 +192,11 @@ Boston, MA 02111-1307, USA. */
#undef HAVE_AIX_SMT_EXP
+#undef HAVE_MKTIME
+#if HAVE_MKTIME && ! defined (_NEXT_SOURCE)
+#define mktime emacs_mktime
+#endif
+
/* Define if you have the ANSI `strerror' function.
Otherwise you must have the variable `char *sys_errlist[]'. */
#undef HAVE_STRERROR