From 7e523af6ee8ecc424e5a83347f444516d0fd4c5c Mon Sep 17 00:00:00 2001 From: Simon Kuenzer Date: Wed, 12 Feb 2020 15:31:29 +0100 Subject: [PATCH] ppoll()/generic select() only available with libc The options LWIP_SOCKET_SELECT_GENERIC_FDS and LWIP_SOCKET_PPOLL are only made available when a proper libc (HAVE_LIBC) is added and enabled to the build. These options do not work with nolibc. Signed-off-by: Simon Kuenzer Reviewed-by: Felipe Huici --- Config.uk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Config.uk b/Config.uk index debf0c7..aaaaae0 100644 --- a/Config.uk +++ b/Config.uk @@ -165,6 +165,7 @@ config LWIP_SOCKET if LWIP_SOCKET config LWIP_SOCKET_SELECT_GENERIC_FDS bool "Use select() with any file descriptor type" + depends on HAVE_LIBC default y help lwip's select() implementation supports only sockets. This @@ -173,6 +174,7 @@ if LWIP_SOCKET config LWIP_SOCKET_PPOLL bool "Enable ppoll()" + depends on HAVE_LIBC default y help Enable ppoll() implementation. -- 2.39.5