diff options
author | ScrumpyJack <scrumpyjack@me.com> | 2014-07-28 16:35:10 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-07-31 06:11:22 +0000 |
commit | 965724feb20156637954cc8e0f9613d886d1a2be (patch) | |
tree | 13c41d507540b819ee82f176f352ff438593a7dd /testing/taskd/Path.cpp.patch | |
parent | d0bff224e824d649bb6ed7611038ad72f964c49d (diff) | |
download | aports-965724feb20156637954cc8e0f9613d886d1a2be.tar.bz2 aports-965724feb20156637954cc8e0f9613d886d1a2be.tar.xz |
testing/taskd: new aport
Taskserver synchronises taskwarrior across multiple clients
http://taskwarrior.org
Diffstat (limited to 'testing/taskd/Path.cpp.patch')
-rw-r--r-- | testing/taskd/Path.cpp.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/taskd/Path.cpp.patch b/testing/taskd/Path.cpp.patch new file mode 100644 index 000000000..018a2029e --- /dev/null +++ b/testing/taskd/Path.cpp.patch @@ -0,0 +1,18 @@ +--- taskd-1.0.0/src/Path.cpp ++++ taskd-1.0.0/src/Path.cpp.changed +@@ -37,6 +37,15 @@ + #include <Directory.h> + #include <Path.h> + ++/* fixes build with musl libc */ ++#ifndef GLOB_TILDE ++#define GLOB_TILDE 0 ++#endif ++ ++#ifndef GLOB_BRACE ++#define GLOB_BRACE 0 ++#endif ++ + //////////////////////////////////////////////////////////////////////////////// + std::ostream& operator<< (std::ostream& out, const Path& path) + { |