Fix building with musl libc

POSIX says poll.h and signal.h should not be prefixed with sys/ (ie
poll.h instead of sys/poll.h)

limits.h also defines a TZNAME_MAX so we change name of the define for
spandsp.
This commit is contained in:
Natanael Copa
2014-05-01 14:12:12 +00:00
committed by Michael Jerris
parent 13b411529f
commit 317f4b1442
6 changed files with 8 additions and 8 deletions

View File

@@ -116,7 +116,7 @@ typedef int scgi_filehandle_t;
#include <sys/types.h>
#include <sys/select.h>
#include <netinet/tcp.h>
#include <sys/signal.h>
#include <signal.h>
#include <unistd.h>
#include <ctype.h>
#endif