mirror of
https://github.com/MariaDB/server.git
synced 2025-06-15 00:02:46 +03:00
Fixes needed to compile with musl C library
Patch originally by Codarren Velvindron
This commit is contained in:
@ -47,9 +47,11 @@
|
||||
#include <sys/select.h>
|
||||
#endif
|
||||
#endif /* !defined(__WIN__) */
|
||||
#ifdef HAVE_POLL
|
||||
#if defined(HAVE_POLL_H)
|
||||
#include <poll.h>
|
||||
#elif defined(HAVE_SYS_POLL_H)
|
||||
#include <sys/poll.h>
|
||||
#endif
|
||||
#endif /* defined(HAVE_POLL_H) */
|
||||
#ifdef HAVE_SYS_UN_H
|
||||
#include <sys/un.h>
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user