diff options
Diffstat (limited to 'net-libs/libmicrohttpd')
-rw-r--r-- | net-libs/libmicrohttpd/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libmicrohttpd/files/libmicrohttpd-0.9.53-fix-build-without-epoll.patch | 21 |
2 files changed, 0 insertions, 22 deletions
diff --git a/net-libs/libmicrohttpd/Manifest b/net-libs/libmicrohttpd/Manifest index 198e63fdb290..b72b78386cb3 100644 --- a/net-libs/libmicrohttpd/Manifest +++ b/net-libs/libmicrohttpd/Manifest @@ -1,4 +1,3 @@ -AUX libmicrohttpd-0.9.53-fix-build-without-epoll.patch 702 BLAKE2B e56d5a0ede9c760d0c0ef47e93ffc0ffeb1837ca1ca3f1627b6b5936d12cc639517e2223f0a38d2dede6aad3ab018a1f1e313d61a8126db42c8b09f9b560ecfe SHA512 d14269551ebc8c4f2f21da71cfbbeb82c8808e6daedda906f3e699350e52eaa14c55cc263343e25667f18d3ae703b86d413925b03c73a992d6358053165bbb02 DIST libmicrohttpd-0.9.52.tar.gz 1244489 BLAKE2B b8736bd50afa9531ea5377f082c8085ff189fad32cca5c07db14e4a1551dd2330630a06cfadb022b212385c2b01e4469c66e727c3e1c2035c131d99760962171 SHA512 2cb7fa6ed59ec5f48748cd2aedea8a68629f02ffcf8e86c6d5b57a6622bb5f0ffd7dabfd6c04cc99047ca81eb76efe2a79b34bd6e3de329261a319369232fcf4 DIST libmicrohttpd-0.9.55.tar.gz 1308328 BLAKE2B 5189bcaf2f29fdff9fdd3d7dfddd1b5e5abbca016c4f55a7e0a176b505cd6e3aa5868260615c922937856cfb9c6fd77a4edeab829c669b4f7751d5512e8c538b SHA512 b410e7253d7c98c40b5e8b8dcd1f93bcbb05c88717190e8dae73073d36465e8e5cfa53c6c5098de60051a5ec64dc423fd94f4b06537d8146b744aa99f5a0b173 DIST libmicrohttpd-0.9.57.tar.gz 1332713 BLAKE2B 52e46726b220229ae722b4b94478bcd657e5edf1a836fa412b3365d8a2ca651887e62badd095f42f4fe41ad92f07e4147c812aef1c03dd6fba72a4acc6b1581a SHA512 996a59b1bc950320f21df095d3e24e1e6a6e4204095eb84e7dc5e5ed296b1dbe553459b227ba6cc93f60721f1975f778ece8c7c1c10e9168d030fba46675eed3 diff --git a/net-libs/libmicrohttpd/files/libmicrohttpd-0.9.53-fix-build-without-epoll.patch b/net-libs/libmicrohttpd/files/libmicrohttpd-0.9.53-fix-build-without-epoll.patch deleted file mode 100644 index ff27c26e3e6d..000000000000 --- a/net-libs/libmicrohttpd/files/libmicrohttpd-0.9.53-fix-build-without-epoll.patch +++ /dev/null @@ -1,21 +0,0 @@ -commit 01df8861c19a203cea9ef26570893c2b9c0e48b2 -Author: Evgeny Grin (Karlson2k) <k2k@narod.ru> -Date: Wed Apr 12 21:11:28 2017 +0300 - - Fixed GNU/Linux builds without epoll - -diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c -index 49a1b82..02713e3 100644 ---- a/src/microhttpd/daemon.c -+++ b/src/microhttpd/daemon.c -@@ -2251,8 +2251,10 @@ send_param_adapter (struct MHD_Connection *connection, - if (0 < ret) - { - /* write successful */ -+#ifdef EPOLL_SUPPORT - if (left > (uint64_t)ret) - connection->epoll_state &= ~MHD_EPOLL_STATE_WRITE_READY; -+#endif /* EPOLL_SUPPORT */ - return ret; - } - err = MHD_socket_get_error_(); |