aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/tomahawk/musl-fixes.patch
diff options
context:
space:
mode:
Diffstat (limited to 'unmaintained/tomahawk/musl-fixes.patch')
-rw-r--r--unmaintained/tomahawk/musl-fixes.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/unmaintained/tomahawk/musl-fixes.patch b/unmaintained/tomahawk/musl-fixes.patch
deleted file mode 100644
index 78f72248d7..0000000000
--- a/unmaintained/tomahawk/musl-fixes.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- ./src/libtomahawk/accounts/ResolverAccount.cpp.orig
-+++ ./src/libtomahawk/accounts/ResolverAccount.cpp
-@@ -44,6 +44,17 @@
- #include <QFileInfo>
- #include <QDir>
-
-+#include <limits.h>
-+
-+#ifndef __WORDSIZE
-+# if ULONG_MAX == 0xffffffffffffffff
-+# define __WORDSIZE 64
-+# elif ULONG_MAX == 0xffffffff
-+# define __WORDSIZE 32
-+# endif /* ULONG_MAX */
-+#endif /* __WORDSIZE */
-+
-+
- #define MANUALRESOLVERS_DIR "manualresolvers"
-
- using namespace Tomahawk;