diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-09-29 09:19:16 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-09-29 09:19:27 +0200 |
| commit | 489a6ab5073c125efcb5ccb25a36f85f0282ced2 (patch) | |
| tree | 43f56e09c01264c04c5c4a0ba74721a9f285978c /depends/patches | |
| parent | Merge #8832: [rpc] throw JSONRPCError when utxo set can not be read (diff) | |
| parent | depends: Add libevent compatibility patch for windows (diff) | |
| download | discoin-489a6ab5073c125efcb5ccb25a36f85f0282ced2.tar.xz discoin-489a6ab5073c125efcb5ccb25a36f85f0282ced2.zip | |
Merge #8730: depends: Add libevent compatibility patch for windows
64047f8 depends: Add libevent compatibility patch for windows (Wladimir J. van der Laan)
Diffstat (limited to 'depends/patches')
| -rw-r--r-- | depends/patches/libevent/libevent-2-fixes.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/depends/patches/libevent/libevent-2-fixes.patch b/depends/patches/libevent/libevent-2-fixes.patch new file mode 100644 index 000000000..79fec8a48 --- /dev/null +++ b/depends/patches/libevent/libevent-2-fixes.patch @@ -0,0 +1,18 @@ +--- a/util-internal.h 2013-11-01 12:18:57.000000000 -0600 ++++ b/util-internal.h 2015-07-20 20:19:43.199560900 -0500 +@@ -299,8 +299,13 @@ HANDLE evutil_load_windows_system_librar + + #if defined(__STDC__) && defined(__STDC_VERSION__) + #if (__STDC_VERSION__ >= 199901L) +-#define EV_SIZE_FMT "%zu" +-#define EV_SSIZE_FMT "%zd" ++ #if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__) ++ #define EV_SIZE_FMT "%Iu" ++ #define EV_SSIZE_FMT "%Id" ++ #else ++ #define EV_SIZE_FMT "%zu" ++ #define EV_SSIZE_FMT "%zd" ++ #endif + #define EV_SIZE_ARG(x) (x) + #define EV_SSIZE_ARG(x) (x) + #endif |