summaryrefslogtreecommitdiff
blob: 18d65bb5bb78f9fed2ef21ff6b0dc5af9fe1f24f (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
http://bugs.gentoo.org/332865

--- src/dav_coda.c
+++ src/dav_coda.c
@@ -52,6 +52,9 @@
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif
+#ifdef HAVE_SYS_STAT_H
+#include <sys/stat.h>
+#endif
 
 #include "defaults.h"
 #include "mount_davfs.h"
--- src/dav_fuse.c
+++ src/dav_fuse.c
@@ -41,6 +41,12 @@
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+#ifdef HAVE_SYS_STAT_H
+#include <sys/stat.h>
+#endif
 
 #include "defaults.h"
 #include "mount_davfs.h"
--- src/kernel_interface.c
+++ src/kernel_interface.c
@@ -44,6 +44,12 @@
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+#ifdef HAVE_SYS_STAT_H
+#include <sys/stat.h>
+#endif
 
 #ifdef HAVE_SYS_MOUNT_H
 #include <sys/mount.h>
--- src/webdav.c
+++ src/webdav.c
@@ -47,6 +47,12 @@
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+#ifdef HAVE_SYS_STAT_H
+#include <sys/stat.h>
+#endif
 
 #include <ne_alloc.h>
 #include <ne_auth.h>