aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfdov <[email protected]>2021-06-09 23:39:38 +0200
committerfdov <[email protected]>2021-06-10 00:01:45 +0200
commitc159cf0b821b97d45b1c17a266499ebfa609a876 (patch)
tree2ea37ff7b6e3c8c91ed6f88f9bfc55b8479365ea
parentMerge pull request #2248 from rnicoll/1.21-count-type (diff)
downloaddiscoin-c159cf0b821b97d45b1c17a266499ebfa609a876.tar.xz
discoin-c159cf0b821b97d45b1c17a266499ebfa609a876.zip
depends: libevent 2.1.12-stable
Update libevent 2.1.12-stable
-rw-r--r--depends/packages/libevent.mk14
-rw-r--r--depends/patches/libevent/0001-fix-windows-getaddrinfo.patch15
2 files changed, 4 insertions, 25 deletions
diff --git a/depends/packages/libevent.mk b/depends/packages/libevent.mk
index 1cd5a1749..dad317193 100644
--- a/depends/packages/libevent.mk
+++ b/depends/packages/libevent.mk
@@ -1,14 +1,8 @@
package=libevent
-$(package)_version=2.1.11-stable
-$(package)_download_path=https://github.com/libevent/libevent/archive/
-$(package)_file_name=release-$($(package)_version).tar.gz
-$(package)_sha256_hash=229393ab2bf0dc94694f21836846b424f3532585bac3468738b7bf752c03901e
-$(package)_patches=0001-fix-windows-getaddrinfo.patch
-
-define $(package)_preprocess_cmds
- patch -p1 < $($(package)_patch_dir)/0001-fix-windows-getaddrinfo.patch && \
- ./autogen.sh
-endef
+$(package)_version=2.1.12-stable
+$(package)_download_path=https://github.com/libevent/libevent/releases/download/release-$($(package)_version)/
+$(package)_file_name=$(package)-$($(package)_version).tar.gz
+$(package)_sha256_hash=92e6de1be9ec176428fd2367677e61ceffc2ee1cb119035037a27d346b0403bb
# When building for Windows, we set _WIN32_WINNT to target the same Windows
# version as we do in configure. Due to quirks in libevents build system, this
diff --git a/depends/patches/libevent/0001-fix-windows-getaddrinfo.patch b/depends/patches/libevent/0001-fix-windows-getaddrinfo.patch
deleted file mode 100644
index a98cd90bd..000000000
--- a/depends/patches/libevent/0001-fix-windows-getaddrinfo.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-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~