aports/testing/i3status/musl-fix.patch
2014-12-08 15:55:32 +00:00

14 lines
303 B
Diff

--- a/include/i3status.h.orig
+++ b/include/i3status.h
@@ -11,6 +11,10 @@
#include <unistd.h>
#include <string.h>
+#ifndef GLOB_TILDE
+#define GLOB_TILDE 0
+#endif
+
#define BEGINS_WITH(haystack, needle) (strncmp(haystack, needle, strlen(needle)) == 0)
#define max(a, b) ((a) > (b) ? (a) : (b))