diff options
Diffstat (limited to 'win32/config_H.gc')
-rw-r--r-- | win32/config_H.gc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/win32/config_H.gc b/win32/config_H.gc index d22a0b03ef..33e10cc427 100644 --- a/win32/config_H.gc +++ b/win32/config_H.gc @@ -2263,6 +2263,12 @@ * This symbol, if defined, indicates that the localtime_r routine * is available to localtime re-entrantly. */ +/* LOCALTIME_R_NEEDS_TZSET: + * Many libc's localtime_r implementations do not call tzset, + * making them differ from localtime(), and making timezone + * changes using $ENV{TZ} without explicitly calling tzset + * impossible. This symbol makes us call tzset before localtime_r + */ /* LOCALTIME_R_PROTO: * This symbol encodes the prototype of localtime_r. * It is zero if d_localtime_r is undef, and one of the @@ -2270,6 +2276,7 @@ * is defined. */ /*#define HAS_LOCALTIME_R /**/ +/*#define LOCALTIME_R_NEEDS_TZSET /**/ #define LOCALTIME_R_PROTO 0 /**/ /* HAS_LONG_DOUBLE: |