aboutsummaryrefslogtreecommitdiffstats
path: root/main/sngtc_client/musl-fix-types.patch
blob: 58fa8238f12bede9575d711e25f9a0ae822d1cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- sng-tc-linux-1.3.4.1.i686.orig/soap/stdsoap2.h
+++ sng-tc-linux-1.3.4.1.i686/soap/stdsoap2.h
@@ -754,8 +754,8 @@
 #   define LONG64 int64_t
 #   define ULONG64 uint64_t
 #  elif defined(__GLIBC__)
-#   include <bits/wordsize.h>
-#   if (__WORDSIZE == 64)
+#   include <limits.h>
+#   if (LONG_BIT == 64)
 #    define LONG64 int64_t
 #    define ULONG64 uint64_t
 #    ifndef SOAP_LONG_FORMAT