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)
14 lines
344 B
C
14 lines
344 B
C
--- include/fuse_kernel.h.orig Mon Oct 3 17:02:36 2005
|
|
+++ include/fuse_kernel.h Sun Oct 9 22:05:09 2005
|
|
@@ -36,7 +36,11 @@
|
|
|
|
/* This file defines the kernel interface of FUSE */
|
|
|
|
+#ifdef __FreeBSD__
|
|
+#include "linux_compat.h"
|
|
+#else
|
|
#include <asm/types.h>
|
|
+#endif
|
|
|
|
/** Version number of this interface */
|
|
#define FUSE_KERNEL_VERSION 7
|