Merge pull request #2309 from oderwat/fix-tzname

Fixes tzname on osx (and presumable bsd).
This commit is contained in:
Dominik Picheta
2015-03-12 17:19:04 +00:00

View File

@@ -49,6 +49,11 @@ when defined(posix) and not defined(JS):
proc posix_gettimeofday(tp: var Timeval, unused: pointer = nil) {.
importc: "gettimeofday", header: "<sys/time.h>".}
# we also need tzset() to make sure that tzname is initialized
proc tzset() {.importc, header: "<sys/time.h>".}
# calling tzset() implicitly to initialize tzname data.
tzset()
elif defined(windows):
import winlean