diff options
author | Craig A. Berry <craigberry@mac.com> | 2009-01-18 17:52:01 -0600 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2009-01-18 17:52:01 -0600 |
commit | b02dc803f42c45a4815c46c45e05cb8758444488 (patch) | |
tree | c8ea5474a9d21550f8581be6d266e2f256bd4bc4 /time64.h | |
parent | 21b521587093ec1c2a5c9d95eb360a923a70e57f (diff) | |
download | perl-b02dc803f42c45a4815c46c45e05cb8758444488.tar.gz |
Not everybody (hardly anybody?) uses const for tm.tm_zone.
This probably needs refinement, possibly a new Configure variable.
Diffstat (limited to 'time64.h')
-rw-r--r-- | time64.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -28,7 +28,11 @@ struct TM64 { #endif #ifdef HAS_TM_TM_ZONE +# ifdef __GLIBC__ const char *tm_zone; +# else + char *tm_zone; +# endif #endif }; |