aboutsummaryrefslogtreecommitdiffstats
path: root/community/taskd/Path.cpp.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/taskd/Path.cpp.patch')
-rw-r--r--community/taskd/Path.cpp.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/community/taskd/Path.cpp.patch b/community/taskd/Path.cpp.patch
new file mode 100644
index 00000000000..018a2029eeb
--- /dev/null
+++ b/community/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)
+ {