mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
03e056edcd
libevent uses getaddrinfo when available, and falls back to gethostbyname Windows has both, but gethostbyname only supports IPv4 libevent fails to detect Windows's getaddrinfo due to not including the right headers This patches libevent's configure script to check it correctly
15 lines
464 B
Diff
15 lines
464 B
Diff
diff -ur libevent-2.1.8-stable.orig/configure.ac libevent-2.1.8-stable/configure.ac
|
|
--- libevent-2.1.8-stable.orig/configure.ac 2017-01-29 17:51:00.000000000 +0000
|
|
+++ libevent-2.1.8-stable/configure.ac 2020-03-07 01:11:16.311335005 +0000
|
|
@@ -389,6 +389,10 @@
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
+#ifdef _WIN32
|
|
+#include <winsock2.h>
|
|
+#include <ws2tcpip.h>
|
|
+#endif
|
|
]],
|
|
[[
|
|
getaddrinfo;
|
|
Only in libevent-2.1.8-stable: configure.ac~
|