From 25d787286b9a8c7a793803b8f0d33f141fbeaafd Mon Sep 17 00:00:00 2001 From: mattn Date: Wed, 16 May 2012 09:32:30 +0900 Subject: fix #127 on mingw. --- src/time.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/time.c b/src/time.c index cf2fd3b91..5e75152e6 100644 --- a/src/time.c +++ b/src/time.c @@ -27,8 +27,12 @@ #ifdef _WIN32 /* Win32 platform do not provide gmtime_r/localtime_r; emulate them using gmtime_s/localtime_s */ +#if _MVC_VER #define gmtime_r(tp, tm) ((gmtime_s((tm), (tp)) == 0) ? (tp) : NULL) #define localtime_r(tp, tm) ((localtime_s((tm), (tp)) == 0) ? (tp) : NULL) +#else +#define NO_GMTIME_R +#endif #endif /* timegm(3) */ -- cgit v1.2.3