package/libmpdclient: Add upstream patch to fix build with musl

Add a patch from upstream to support building with the musl C library.

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Jörg Krause 2014-09-29 23:26:10 +02:00 committed by Peter Korsgaard
parent 212820b65f
commit 71caed48f2
1 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,41 @@
From cc2ffe943dd36a4c95ec34b2f2bf413de15b7974 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= <revol@free.fr>
Date: Fri, 11 Jul 2014 08:56:49 +0200
Subject: POSIX says fd_set is defined by <sys/select.h>
Haiku requires this.
cf.
http://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/select.h.html
Also guard sys/select.h by ifndef WIN32 as Mingw32 doesn't provide it.
We'll avoid a configure check just for this.
diff --git a/src/socket.c b/src/socket.c
index f76510c..2aa5f7f 100644
--- a/src/socket.c
+++ b/src/socket.c
@@ -43,6 +43,7 @@
#else
# include <netinet/in.h>
# include <arpa/inet.h>
+# include <sys/select.h>
# include <sys/socket.h>
# include <netdb.h>
# include <sys/un.h>
diff --git a/src/sync.c b/src/sync.c
index 43cfe50..0a6c9d3 100644
--- a/src/sync.c
+++ b/src/sync.c
@@ -33,6 +33,9 @@
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
+#ifndef WIN32
+#include <sys/select.h>
+#endif
#include <fcntl.h>
#include <unistd.h>
--
cgit v0.10-2-gd358