Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 16 Oct 1998 12:32:51 +0000 (12:32 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 16 Oct 1998 12:32:51 +0000 (12:32 +0000)
1998-10-16  Ulrich Drepper  <drepper@cygnus.com>

* time/mktime.c: Define _POSIX_THREAD_SAFE_FUNCTIONS to get
localtime_t declaration on some systems.

ChangeLog
time/mktime.c

index b6e7697..bf6b048 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1998-10-16  Ulrich Drepper  <drepper@cygnus.com>
+
+       * time/mktime.c: Define _POSIX_THREAD_SAFE_FUNCTIONS to get
+       localtime_t declaration on some systems.
+
 1998-10-16 10:07  Ulrich Drepper  <drepper@cygnus.com>
 
        * iconv/Makefile [! elf]: Define CFLAGS-gconv_simple.c to
index ab4c0ad..fda08a2 100644 (file)
 # include <config.h>
 #endif
 
-/* Some systems need this in order to declare localtime_r properly.  */
+/* Some systems require that one of these symbols be defined in
+   order to declare localtime_r properly.  */
 #ifndef __EXTENSIONS__
 # define __EXTENSIONS__ 1
 #endif
+#ifndef _POSIX_THREAD_SAFE_FUNCTIONS
+# define _POSIX_THREAD_SAFE_FUNCTIONS 1
+#endif
 
 #ifdef _LIBC
 # define HAVE_LIMITS_H 1