mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
TW-1492
- TW-1492 compiling v2.4.0 using musl(libc) (thanks to V.Krishn).
This commit is contained in:
parent
9bf7dfda4f
commit
f32c4d1f73
3 changed files with 3 additions and 1 deletions
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue