forked from Lainports/freebsd-ports
FUSE makes it possible to implement a filesystem in a userspace program. Features include: simple yet comprehensive API, secure mounting by non-root users, support for RELENG_6 and HEAD FreeBSD kernels, multi-threaded operation. WWW: http://sourceforge.net/projects/fuse/ PR: ports/87167 Submitted by: Anish Mistry <amistry@am-productions.biz> Reviewed by: Csaba Henk <csaba.henk@creo.hu> (fuse SoC participant)
15 lines
349 B
C
15 lines
349 B
C
--- include/fuse_lowlevel.h.orig Mon Oct 3 16:12:50 2005
|
|
+++ include/fuse_lowlevel.h Sun Oct 9 22:05:09 2005
|
|
@@ -18,7 +18,12 @@
|
|
#include <utime.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
+#ifdef __FreeBSD__
|
|
+#include <sys/param.h>
|
|
+#include <sys/mount.h>
|
|
+#else
|
|
#include <sys/statfs.h>
|
|
+#endif
|
|
#include <sys/uio.h>
|
|
|
|
#ifdef __cplusplus
|