diff --git a/deps/Makefile b/deps/Makefile index b3242c737..29d06948d 100644 --- a/deps/Makefile +++ b/deps/Makefile @@ -168,9 +168,6 @@ else cd libmicrohttpd && ln -s libmicrohttpd-0.9.75 libmicrohttpd cd libmicrohttpd && tar -zxf libmicrohttpd-0.9.75.tar.gz # cd libmicrohttpd/libmicrohttpd && patch src/microhttpd/connection.c < ../connection.c-snprintf-overflow.patch -endif -ifeq ($(UNAME_S),Darwin) - cd libmicrohttpd/libmicrohttpd && patch src/microhttpd/mhd_sockets.c < ../mhd_sockets.c-issue-5977.patch endif cd libmicrohttpd/libmicrohttpd && ./configure --enable-https && CC=${CC} CXX=${CXX} ${MAKE} diff --git a/deps/libmicrohttpd/mhd_sockets.c-issue-5977.patch b/deps/libmicrohttpd/mhd_sockets.c-issue-5977.patch deleted file mode 100644 index f37083fee..000000000 --- a/deps/libmicrohttpd/mhd_sockets.c-issue-5977.patch +++ /dev/null @@ -1,8 +0,0 @@ -@@ -528,6 +528,7 @@ MHD_socket_cork_ (MHD_socket sock, - TCP_CORK always flushes socket buffer. */ - if (0 > send (sock, - &dummy, -+ 0, - 0)) - return 0; /* even force flush failed!? */ - return 1; /* success */