1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 20:55:19 +03:00
aports/community/taskd/Path.cpp.patch
2020-03-17 01:13:15 +01:00

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