- TW-1492 compiling v2.4.0 using musl(libc) (thanks to V.Krishn).
This commit is contained in:
Paul Beckingham 2015-01-04 10:14:15 -05:00
parent 9bf7dfda4f
commit f32c4d1f73
3 changed files with 3 additions and 1 deletions

View file

@ -113,6 +113,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
Roman Inflianskas Roman Inflianskas
Łukasz Panek Łukasz Panek
Tomas Babej Tomas Babej
V.Krishn
Thanks to the following, who submitted detailed bug reports and excellent Thanks to the following, who submitted detailed bug reports and excellent
suggestions: suggestions:

View file

@ -2,6 +2,7 @@
- TW-1486 task wait shows completed tasks which has a wait attribute (thanks to - TW-1486 task wait shows completed tasks which has a wait attribute (thanks to
Sujeevan Vijayakumaran). Sujeevan Vijayakumaran).
- TW-1492 compiling v2.4.0 using musl(libc) (thanks to V.Krishn).
- Fixed assorted color theme problems. - Fixed assorted color theme problems.
- Changed assorted reports so they do not use '.age' format for dates that are - Changed assorted reports so they do not use '.age' format for dates that are
in the future, because those are never shown with this format (thanks to in the future, because those are never shown with this format (thanks to

View file

@ -702,7 +702,7 @@ void ISO8601d::resolve ()
t.tm_min = (seconds % 3600) / 60; t.tm_min = (seconds % 3600) / 60;
t.tm_sec = seconds % 60; t.tm_sec = seconds % 60;
_value = utc ? timegm (&t) : timelocal (&t); _value = utc ? timegm (&t) : mktime (&t);
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////