aports/testing/taskd/Path.cpp.patch
ScrumpyJack 965724feb2 testing/taskd: new aport
Taskserver synchronises taskwarrior across multiple clients
http://taskwarrior.org
2014-07-31 06:11:22 +00:00

19 lines
417 B
Diff

--- 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)
{