packages/multimedia/crtmpserver/patches/070-sysconf_unistd.patch
florian 977de77cc1 crtmpsever: add missing unistd.h inclusion for sysconf()
We were failing the build w/ GCC 4.8 on the sysconf() prototype due to a
missing include of unistd.h

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@39922 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-13 16:52:13 +00:00

11 lines
252 B
Diff

--- a/sources/common/include/platform/linux/linuxplatform.h
+++ b/sources/common/include/platform/linux/linuxplatform.h
@@ -59,6 +59,7 @@
#include <sys/socket.h>
#include <string.h>
#include <stdarg.h>
+#include <unistd.h>
using namespace std;