From ae675a5b17570789affc06f5a1ea4522e64df469 Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Sun, 27 Oct 2024 17:03:10 +0100 Subject: [PATCH] libmicrohttpd: Enable 'poll()' usage If 'poll()' function is disabled, then in thread-per-connection mode 'select()' is used. This is much less efficient. 'epoll' is not used in thread-per-connection mode as it would require additional epoll FD per every connection. Signed-off-by: Evgeny Grin (Karlson2k) --- libs/libmicrohttpd/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/libmicrohttpd/Makefile b/libs/libmicrohttpd/Makefile index 1c820bdd5b..98e6d8080f 100644 --- a/libs/libmicrohttpd/Makefile +++ b/libs/libmicrohttpd/Makefile @@ -57,7 +57,6 @@ CONFIGURE_ARGS += \ --disable-rpath \ --disable-doc \ --disable-examples \ - --disable-poll \ --enable-epoll \ --with-pic -- 2.30.2