From: sof Date: Tue, 23 Jul 2002 18:50:54 +0000 (+0000) Subject: [project @ 2002-07-23 18:50:54 by sof] X-Git-Tag: nhc98-1-18-release~933 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=e22e9279b5f065376e576c90c6080dacafeaff34;p=haskell-directory.git [project @ 2002-07-23 18:50:54 by sof] gmtoff: MS CRT implementation of _tzset() (and _timezone) assumes that >0 represent positions west of the Prime Meridian. This module assumes the opposite, so flip the sign of 'timezone' when compiling for mingw. --- diff --git a/System/Time.hsc b/System/Time.hsc index 6d8a800..3df3091 100644 --- a/System/Time.hsc +++ b/System/Time.hsc @@ -348,6 +348,12 @@ foreign import ccall unsafe "timezone" timezone :: Ptr CLong gmtoff x = do dst <- (#peek struct tm,tm_isdst) x tz <- peek timezone +#if defined(mingw32_TARGET_OS) + -- According to the MSVC documentation for _tzset, _timezone is > 0 + -- for locations west of the Prime Meridian. Code elsewhere in this + -- module assume that >0 gmt offsets means east, so flip the sign. + tz <- return (-tz) +#endif if dst then return (fromIntegral tz - 3600) else return tz # endif /* ! HAVE_ALTZONE */ #endif /* ! HAVE_TM_ZONE */