mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
- Added "#include <string.h>" to task.cpp to ensure clean build under GCC 4.3
This commit is contained in:
parent
fb87039d8c
commit
ec15dc9342
4 changed files with 8 additions and 1 deletions
2
AUTHORS
2
AUTHORS
|
@ -4,6 +4,7 @@ Principal Author:
|
|||
Contributing Authors:
|
||||
Damian Glenny
|
||||
Andy Lester
|
||||
H. İbrahim Güngör
|
||||
|
||||
With thanks to:
|
||||
Eugene Kramer
|
||||
|
@ -13,7 +14,6 @@ With thanks to:
|
|||
Thomas Engel
|
||||
Nishiishii
|
||||
galvanizd
|
||||
H. İbrahim Güngör
|
||||
Stas Antons
|
||||
Vincent Fleuranceau
|
||||
T. Charles Yun
|
||||
|
|
|
@ -25,6 +25,8 @@ represents a feature release, and the Z represents a patch.
|
|||
whenever task is invoked with no arguments.
|
||||
+ Bug: Now properly supports relative dates in filters (task list due:eom,
|
||||
task list due:tomorrow, task list due:23rd ...)
|
||||
+ Bug: Source now properly includes <string.h> in order to build clean
|
||||
using gcc 4.3.
|
||||
|
||||
------ old releases ------------------------------
|
||||
|
||||
|
|
|
@ -81,6 +81,7 @@
|
|||
<td>Mac OS X 10.5 (Leopard) Intel-only:</td>
|
||||
<td><a href="http://www.beckingham.net/task-1.4.2.pkg">task-1.4.2.pkg</a></td>
|
||||
</tr>
|
||||
<!--
|
||||
<tr>
|
||||
<td>
|
||||
Debian package:
|
||||
|
@ -88,6 +89,7 @@
|
|||
</td>
|
||||
<td><a href="http://www.beckingham.net/task_1.4.2-1_i386.deb">task_1.4.2-1_i386.deb</a></td>
|
||||
</tr>
|
||||
-->
|
||||
</table>
|
||||
|
||||
<h4>New in version 1.4.2 (9/12/2008)</h4>
|
||||
|
@ -110,6 +112,8 @@
|
|||
<li>Fixed bug so that relative dates in filters (task list due:eom,
|
||||
task list due:tomorrow, task list due:23rd ...) are now properly
|
||||
supported.
|
||||
<li>Fixed bug so that source now properly includes <string.h> in
|
||||
order to build clean using gcc 4.3.
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include <fstream>
|
||||
#include <sys/types.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include <pwd.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue