summarylogtreecommitdiffstats
path: root/add-missing-includes.patch
blob: e94638d0e6f927c7b3de0abbd2846acb1770646b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Index: kiofuseapp.h
===================================================================
--- kiofuseapp.h	(revision 1360808)
+++ kiofuseapp.h	(working copy)
@@ -22,6 +22,9 @@
 #define KIO_FUSE_APP_H
 
 #include <errno.h>
+extern "C" {
+#include <stdint.h>
+}
 
 #include "cache.h"
 #include "jobhelpers.h"
Index: kiofuseops.cpp
===================================================================
--- kiofuseops.cpp	(revision 1360808)
+++ kiofuseops.cpp	(working copy)
@@ -24,6 +24,9 @@
 #include <QThread>
 
 #include <kdebug.h>
+extern "C" {
+#include <unistd.h>
+}
 
 int kioFuseGetAttr(const char *relPath, struct stat *stbuf)
 {