From: Evgeny Grin (Karlson2k) Date: Sun, 27 Oct 2024 16:03:10 +0000 (+0100) Subject: libmicrohttpd: Enable 'poll()' usage X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=ae675a5b17570789affc06f5a1ea4522e64df469;p=openwrt-packages.git 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) --- diff --git a/libs/libmicrohttpd/Makefile b/libs/libmicrohttpd/Makefile index 1c820bdd5..98e6d8080 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