TW-1492
- TW-1492 compiling v2.4.0 using musl(libc) (thanks to V.Krishn).
This commit is contained in:
1
AUTHORS
1
AUTHORS
@@ -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:
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
Reference in New Issue
Block a user