summaryrefslogtreecommitdiffstats
path: root/package/wvstreams
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2013-05-12 20:58:40 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2013-05-12 20:58:40 +0200
commit401a3d98e10f7a35614434758aac3115a30972f3 (patch)
tree3cd9e97bd7cd9c439c59523c4b6ec0332f87ad36 /package/wvstreams
parentc27b71bccb390b5bc8a1775516efa6628f1690b9 (diff)
downloadbuildroot-novena-401a3d98e10f7a35614434758aac3115a30972f3.tar.gz
buildroot-novena-401a3d98e10f7a35614434758aac3115a30972f3.zip
wvstreams: add missing includes for getuid()
Fixes http://autobuild.buildroot.net/results/2ad80b1ae823fbe196f8a65220d5d4a0dd202c4e/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/wvstreams')
-rw-r--r--package/wvstreams/wvstreams-0005-getuid.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/package/wvstreams/wvstreams-0005-getuid.patch b/package/wvstreams/wvstreams-0005-getuid.patch
new file mode 100644
index 000000000..60150665c
--- /dev/null
+++ b/package/wvstreams/wvstreams-0005-getuid.patch
@@ -0,0 +1,25 @@
+[PATCH] wvuid.cc: getuid needs sys/types.h + unistd.h
+
+Otherwise the build fails with:
+
+utils/wvuid.cc: In function 'wvuid_t wvgetuid()':
+utils/wvuid.cc:63:19: error: 'getuid' was not declared in this scope
+
+Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
+---
+ utils/wvuid.cc | 2 ++
+ 1 file changed, 2 insertions(+)
+
+Index: wvstreams-4.6.1/utils/wvuid.cc
+===================================================================
+--- wvstreams-4.6.1.orig/utils/wvuid.cc
++++ wvstreams-4.6.1/utils/wvuid.cc
+@@ -33,6 +33,8 @@
+
+ #else // not WIN32
+
++#include <unistd.h>
++#include <sys/types.h>
+
+ WvString wv_username_from_uid(wvuid_t uid)
+ {