]> git.eshelyaron.com Git - emacs.git/commitdiff
(mktime): Define to emacs_mktime if HAVE_MKTIME && ! defined (_NEXT_SOURCE),
authorPaul Eggert <eggert@twinsun.com>
Tue, 3 Sep 1996 18:00:34 +0000 (18:00 +0000)
committerPaul Eggert <eggert@twinsun.com>
Tue, 3 Sep 1996 18:00:34 +0000 (18:00 +0000)
so that we don't attempt to redefine the libc mktime.

src/config.in

index 54379cb96bd2afe200a460523f4e9dc8dc2ad149..d91b36e5e1182194d8384a0f65774ebf3465bcf7 100644 (file)
@@ -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