Bug fix - task now builds on Arch Linux

- Applied patch to allow task to build on Arch Linux (thanks to
  Johan Friis).
This commit is contained in:
Paul Beckingham 2009-05-11 23:44:17 -04:00
parent e2e5b4884c
commit 046f511d66
7 changed files with 7 additions and 1 deletions

View file

@ -14,6 +14,7 @@ Contributing Authors:
T. Charles Yun T. Charles Yun
David J Patrick David J Patrick
P.C. Shyamshankar P.C. Shyamshankar
Johan Friis
With thanks to: With thanks to:
Eugene Kramer Eugene Kramer

View file

@ -29,6 +29,7 @@
and can display multiple weeks. and can display multiple weeks.
+ New tab completion script, tab_completion.sh, for bash users (thanks + New tab completion script, tab_completion.sh, for bash users (thanks
to Federico Hernandez). to Federico Hernandez).
+ Added patch to allow task to build on Arch Linux (thanks to Johan Friis).
------ old releases ------------------------------ ------ old releases ------------------------------

1
NEWS
View file

@ -11,6 +11,7 @@ Task has been built and tested on the following configurations:
- Ubuntu 8 Hardy Heron - Ubuntu 8 Hardy Heron
- Ubuntu 8.10 Intrepid Ibex - Ubuntu 8.10 Intrepid Ibex
- Ubuntu 9.04 Jaunty Jackalope - Ubuntu 9.04 Jaunty Jackalope
- Arch Linux
- Solaris 10 - Solaris 10
- Cygwin 1.5.25-14 - Cygwin 1.5.25-14

2
README
View file

@ -14,7 +14,7 @@ Thank you for taking a look at task. Task is a GTD utility featuring:
It is intended that features, mainly in the form of reports will be added It is intended that features, mainly in the form of reports will be added
frequently, with best practices and useful reports evolving from usage patterns. frequently, with best practices and useful reports evolving from usage patterns.
Task is scope-limited to GTD functionality only. Task is scope-limited to GTD-like functionality only.
You may want to watch the old task movie on YouTube: You may want to watch the old task movie on YouTube:

View file

@ -168,6 +168,7 @@
and can display multiple weeks. and can display multiple weeks.
<li>New tab completion script, tab_completion.sh, for bash users (thanks <li>New tab completion script, tab_completion.sh, for bash users (thanks
to Federico Hernandez). to Federico Hernandez).
<li>Added patch to allow task to build on Arch Linux (thanks to Johan Friis).
</ul> </ul>
<p> <p>

View file

@ -27,6 +27,7 @@
#ifndef INCLUDED_DATE #ifndef INCLUDED_DATE
#define INCLUDED_DATE #define INCLUDED_DATE
#include <stdio.h>
#include <string> #include <string>
class Date; class Date;

View file

@ -27,6 +27,7 @@
#ifndef INCLUDED_GRID #ifndef INCLUDED_GRID
#define INCLUDED_GRID #define INCLUDED_GRID
#include <stdio.h>
#include <string> #include <string>
#include <vector> #include <vector>