5638c64357
Version bump to 0.8.1 requires a change of the uclibc patch. Signed-off-by: Jörg Krause <jkrause@posteo.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
130 lines
3.3 KiB
Diff
130 lines
3.3 KiB
Diff
Add necessary fixes to build with uClibc
|
|
|
|
- Missing #include of C library headers
|
|
- exp10 is not available in uClibc
|
|
|
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
Signed-off-by: Jörg Krause <jkrause@posteo.de>
|
|
---
|
|
libupnpp/control/avtransport.cxx | 2 ++
|
|
libupnpp/control/ohplaylist.cxx | 1 +
|
|
libupnpp/control/renderingcontrol.cxx | 2 ++
|
|
libupnpp/device/device.cxx | 1 +
|
|
libupnpp/soaphelp.cxx | 4 ++++
|
|
upmpd/upmpd.cxx | 1 +
|
|
upmpd/upmpdutils.cxx | 7 +++++++
|
|
7 files changed, 18 insertions(+)
|
|
|
|
diff --git a/libupnpp/control/avtransport.cxx b/libupnpp/control/avtransport.cxx
|
|
index 1aa79e2..d48af23 100644
|
|
--- a/libupnpp/control/avtransport.cxx
|
|
+++ b/libupnpp/control/avtransport.cxx
|
|
@@ -15,6 +15,8 @@
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
+#include <stdlib.h>
|
|
+
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
diff --git a/libupnpp/control/ohplaylist.cxx b/libupnpp/control/ohplaylist.cxx
|
|
index 5269a5d..fe95cc1 100644
|
|
--- a/libupnpp/control/ohplaylist.cxx
|
|
+++ b/libupnpp/control/ohplaylist.cxx
|
|
@@ -14,6 +14,7 @@
|
|
* Free Software Foundation, Inc.,
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
+#include <stdlib.h>
|
|
#include <arpa/inet.h>
|
|
|
|
#include <string>
|
|
diff --git a/libupnpp/control/renderingcontrol.cxx b/libupnpp/control/renderingcontrol.cxx
|
|
index 818e7c3..17d28ee 100644
|
|
--- a/libupnpp/control/renderingcontrol.cxx
|
|
+++ b/libupnpp/control/renderingcontrol.cxx
|
|
@@ -15,6 +15,8 @@
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
+#include <stdlib.h>
|
|
+
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
diff --git a/libupnpp/device/device.cxx b/libupnpp/device/device.cxx
|
|
index 682c151..48c81e4 100644
|
|
--- a/libupnpp/device/device.cxx
|
|
+++ b/libupnpp/device/device.cxx
|
|
@@ -17,6 +17,7 @@
|
|
#include "config.h"
|
|
|
|
#include <time.h>
|
|
+#include <errno.h>
|
|
#include <sys/time.h>
|
|
|
|
#include <iostream>
|
|
diff --git a/libupnpp/soaphelp.cxx b/libupnpp/soaphelp.cxx
|
|
index 8f25185..f4358b9 100644
|
|
--- a/libupnpp/soaphelp.cxx
|
|
+++ b/libupnpp/soaphelp.cxx
|
|
@@ -16,6 +16,10 @@
|
|
*/
|
|
#include "config.h"
|
|
|
|
+#include <string.h>
|
|
+#include <stdlib.h>
|
|
+#include <stdio.h>
|
|
+
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
diff --git a/upmpd/upmpd.cxx b/upmpd/upmpd.cxx
|
|
index 3b45cdd..bc506ff 100644
|
|
--- a/upmpd/upmpd.cxx
|
|
+++ b/upmpd/upmpd.cxx
|
|
@@ -22,6 +22,7 @@
|
|
#include <signal.h>
|
|
#include <sys/types.h>
|
|
#include <pwd.h>
|
|
+#include <errno.h>
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
diff --git a/upmpd/upmpdutils.cxx b/upmpd/upmpdutils.cxx
|
|
index 2830a2e..7cea612 100644
|
|
--- a/upmpd/upmpdutils.cxx
|
|
+++ b/upmpd/upmpdutils.cxx
|
|
@@ -21,6 +21,8 @@
|
|
// not linking to Qt or glib just to get path-concatenating
|
|
// functions...
|
|
|
|
+#define _GNU_SOURCE
|
|
+
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <sys/types.h>
|
|
@@ -31,6 +33,7 @@
|
|
#include <regex.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
+#include <stdlib.h>
|
|
#ifndef O_STREAMING
|
|
#define O_STREAMING 0
|
|
#endif
|
|
@@ -283,6 +286,10 @@ int percentodbvalue(int value)
|
|
#ifdef __APPLE__
|
|
#define exp10 __exp10
|
|
#endif
|
|
+#ifdef __UCLIBC__
|
|
+/* 10^x = 10^(log e^x) = (e^x)^log10 = e^(x * log 10) */
|
|
+#define exp10(x) (exp((x) * log(10)))
|
|
+#endif /* __UCLIBC__ */
|
|
|
|
// Translate VolumeDB to MPD 0-100
|
|
int dbvaluetopercent(int dbvalue)
|
|
--
|
|
2.1.1
|
|
|