1
0
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:
Monty
2016-02-07 15:00:30 +02:00
parent 07b8aefe90
commit d80b8442a6
7 changed files with 18 additions and 9 deletions

View File

@ -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