mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-14 10:05:32 +02:00
Update breakpad to make it work with MinGW
This commit is contained in:
@@ -154,7 +154,7 @@
|
||||
#endif
|
||||
|
||||
/* The size of `long', as computed by sizeof. */
|
||||
#if defined(_M_X64) || defined(__x86_64__)
|
||||
#if defined(_M_X64) || (defined(__x86_64__) && !defined(__ILP32__))
|
||||
#define CURL_SIZEOF_LONG 8
|
||||
#else
|
||||
#define CURL_SIZEOF_LONG 4
|
||||
@@ -170,7 +170,7 @@
|
||||
typedef CURL_TYPEOF_CURL_SOCKLEN_T curl_socklen_t;
|
||||
|
||||
/* Signed integral data type used for curl_off_t. */
|
||||
#if defined(_M_X64) || defined(__x86_64__)
|
||||
#if defined(_M_X64) || (defined(__x86_64__) && !defined(__ILP32__))
|
||||
#define CURL_TYPEOF_CURL_OFF_T long
|
||||
#else
|
||||
#define CURL_TYPEOF_CURL_OFF_T int64_t
|
||||
|
Reference in New Issue
Block a user