Merge pull request #1565 from hauke/liblo

liblo: fix build with musl
This commit is contained in:
Steven Barth
2015-08-03 13:43:12 +02:00
@@ -0,0 +1,11 @@
--- a/src/server.c
+++ b/src/server.c
@@ -48,7 +48,7 @@
#include <netdb.h>
#include <sys/socket.h>
#ifdef HAVE_POLL
-#include <sys/poll.h>
+#include <poll.h>
#endif
#include <sys/un.h>
#include <arpa/inet.h>