diff options
author | Steven Barth <steven@midlink.org> | 2015-08-03 13:43:12 +0200 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2015-08-03 13:43:12 +0200 |
commit | f71205a1556a48b5675264c652aeefe64a0e2d13 (patch) | |
tree | 2dcda2117c9fcb7363f8f0f799a593b32286eeda | |
parent | 80bdd250b26385f1397cac879401982935ec5d7a (diff) | |
parent | f8fd638736fa319463c0d0a31d2c7c3add4aca5a (diff) |
Merge pull request #1565 from hauke/liblo
liblo: fix build with musl
-rw-r--r-- | libs/liblo/patches/001-fix-musl-include.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/liblo/patches/001-fix-musl-include.patch b/libs/liblo/patches/001-fix-musl-include.patch new file mode 100644 index 000000000..f974bd3d1 --- /dev/null +++ b/libs/liblo/patches/001-fix-musl-include.patch @@ -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> |