1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-02-02 15:07:36 -05:00

Fix: Guard include of <sys/select.h>

This commit is contained in:
Marvin Scholz 2018-07-09 01:39:35 +02:00
parent 67927ddddf
commit db95e9c6fc

View File

@ -16,7 +16,7 @@
#ifdef HAVE_POLL #ifdef HAVE_POLL
#include <poll.h> #include <poll.h>
#else #elif HAVE_SYS_SELECT_H
#include <sys/select.h> #include <sys/select.h>
#endif #endif