diff options
author | Sebastian Wiedenroth <wiedi@frubar.net> | 2015-01-18 02:30:28 +0100 |
---|---|---|
committer | Sebastian Wiedenroth <wiedi@frubar.net> | 2015-01-18 02:30:28 +0100 |
commit | 9c9527faa922fff90f04a7c22788a282b4b02fa1 (patch) | |
tree | 8c901123c0921b9dd658ae969ce439157e24eb22 /src/lua | |
parent | 146debb5020659b4cbfdced4ca6d651de162dd4b (diff) | |
download | rspamd-9c9527faa922fff90f04a7c22788a282b4b02fa1.tar.gz rspamd-9c9527faa922fff90f04a7c22788a282b4b02fa1.zip |
Fix build on SunOS
- the struct dirent d_type is not available on SunOS
- tm_gmtoff is not a POSIX field
Diffstat (limited to 'src/lua')
-rw-r--r-- | src/lua/lua_task.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lua/lua_task.c b/src/lua/lua_task.c index 6d2ded9ec..7eed0a395 100644 --- a/src/lua/lua_task.c +++ b/src/lua/lua_task.c @@ -1763,7 +1763,9 @@ lua_task_get_date (lua_State *L) tt = tim; localtime_r (&tt, &t); +#if !defined(__sun) t.tm_gmtoff = 0; +#endif t.tm_isdst = 0; tim = mktime (&t); } |