-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build on SunOS. Patches submitted by Thomas Merkel in #9
- Loading branch information
Showing
3 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
$NetBSD: distinfo,v 1.1 2016/06/20 20:30:42 kamil Exp $ | ||
$NetBSD: distinfo,v 1.2 2017/08/21 14:39:05 jperkin Exp $ | ||
|
||
SHA1 (task-2.5.1.tar.gz) = 647faf0784aa8ebe48cba3e2061f79e1ddbf3e84 | ||
RMD160 (task-2.5.1.tar.gz) = ae04417ff7f007c6e01d4d6bd4dede67adc1e35f | ||
SHA512 (task-2.5.1.tar.gz) = ec17e5cefff55ecd2c1cb717801c02683d94030906c8d86450c3c79c0bc5a18d82559a5e9e26a91411a1025a241b78ddbc1de51cafc1a2dd531e8229e5e61c10 | ||
Size (task-2.5.1.tar.gz) = 903428 bytes | ||
SHA1 (patch-src_commands_CmdBurndown.cpp) = 36b7a4c1ce72652902705d80477b61dbd87b347e | ||
SHA1 (patch-src_commands_CmdEdit.cpp) = 07c33f7cb07e7459cc5eabacbe3b003afa8db060 |
15 changes: 15 additions & 0 deletions
15
time/taskwarrior/patches/patch-src_commands_CmdBurndown.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
$NetBSD: patch-src_commands_CmdBurndown.cpp,v 1.1 2017/08/21 14:39:05 jperkin Exp $ | ||
|
||
Call of overloaded 'log10(unsigned int)' is ambiguous | ||
|
||
--- src/commands/CmdBurndown.cpp.orig 2016-02-24 22:18:11.000000000 +0000 | ||
+++ src/commands/CmdBurndown.cpp | ||
@@ -902,7 +902,7 @@ unsigned Chart::burndown_size (unsigned | ||
|
||
// Choose the number from here rounded up to the nearest 10% of the next | ||
// highest power of 10 or half of power of 10. | ||
- const unsigned count = (unsigned) log10 (std::numeric_limits<unsigned>::max ()); | ||
+ const unsigned count = (unsigned) log10 ((double)std::numeric_limits<unsigned>::max ()); | ||
unsigned half = 500; | ||
unsigned full = 1000; | ||
|