libmicrohttpd: Enable 'poll()' usage
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>
Sun, 27 Oct 2024 16:03:10 +0000 (17:03 +0100)
committerRosen Penev <rosenp@gmail.com>
Sun, 27 Oct 2024 22:51:33 +0000 (15:51 -0700)
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) <k2k@narod.ru>
libs/libmicrohttpd/Makefile

index 1c820bdd5b89ba052304fc37731e8bfc2a6dc1dc..98e6d8080fa0fbc7724ed01f40d9e67fcd10014c 100644 (file)
@@ -57,7 +57,6 @@ CONFIGURE_ARGS += \
        --disable-rpath \
        --disable-doc \
        --disable-examples \
-       --disable-poll \
        --enable-epoll \
        --with-pic