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
311 B
C
15 lines
311 B
C
--- include/fuse.h.orig Mon Oct 3 16:12:50 2005
|
|
+++ include/fuse.h Sun Oct 9 22:05:09 2005
|
|
@@ -20,7 +20,12 @@
|
|
|
|
#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 <utime.h>
|
|
|
|
#ifdef __cplusplus
|