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 <simon.kuenzer@neclab.eu>
Reviewed-by: Felipe Huici <felipe.huici@neclab.eu>
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
config LWIP_SOCKET_PPOLL
bool "Enable ppoll()"
+ depends on HAVE_LIBC
default y
help
Enable ppoll() implementation.