-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
depends: Add libevent compatibility patch for windows
Add a patch that seems to be necessary for compatibilty of libevent 2.0.22 with recent mingw-w64 gcc versions (at least GCC 5.3.1 from Ubuntu 16.04). Without this patch the Content-Length in the HTTP header ends up as `Content-Length: zu`, causing communication between the RPC client and server to break down. See discussion in #8653. Source: https://sourceforge.net/p/levent/bugs/363/ Thanks to @sstone for the suggestion.
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |