aboutsummaryrefslogtreecommitdiffstats
path: root/main/taskd/Path.cpp.patch
blob: 018a2029eeb9b21e88c0ed8027cbcc6c73d456db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)
 {