aboutsummaryrefslogtreecommitdiffstats
path: root/community/taskd/Path.cpp.patch
diff options
context:
space:
mode:
authorMichał Polański <michal@polanski.me>2020-03-17 00:46:05 +0100
committerMichał Polański <michal@polanski.me>2020-03-17 01:13:15 +0100
commitcefa5b1803f623483eea8ff186a1b11e0216603d (patch)
tree376e4fd56a847e8b03ff03e60f7c0f03741c1f87 /community/taskd/Path.cpp.patch
parentd03a7869634b5ace8541380635daf34b747a8e5e (diff)
downloadaports-cefa5b1803f623483eea8ff186a1b11e0216603d.tar.bz2
aports-cefa5b1803f623483eea8ff186a1b11e0216603d.tar.xz
community/taskd: move from main
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 0000000000..018a2029ee
--- /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)
+ {