diff options
author | nork <nork@FreeBSD.org> | 2008-04-13 04:09:19 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2008-04-13 04:09:19 +0800 |
commit | a17458fc494d6c387a8bbb7a047b095fda3a2571 (patch) | |
tree | 0bbbb8a6dc59e8442dd60a627231c7afd4858b41 | |
parent | 5b7a10049fe97c33f241cf4559f57ce9fbaa3b10 (diff) | |
download | freebsd-ports-graphics-a17458fc494d6c387a8bbb7a047b095fda3a2571.tar.gz freebsd-ports-graphics-a17458fc494d6c387a8bbb7a047b095fda3a2571.tar.zst freebsd-ports-graphics-a17458fc494d6c387a8bbb7a047b095fda3a2571.zip |
Fix build on 8-current.
PR: ports/122643
Submitted by: NAKAJI Hiroyuki <nakaji at jp freebsd org>
Reviewed by: Anish Mistry <amistry at am-productions biz> (maintainer)
-rw-r--r-- | sysutils/fusefs-kmod/Makefile | 1 | ||||
-rw-r--r-- | sysutils/fusefs-kmod/files/patch-fuse_module__fuse_vfsops.c | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/sysutils/fusefs-kmod/Makefile b/sysutils/fusefs-kmod/Makefile index 45f54ed5427..65950f56242 100644 --- a/sysutils/fusefs-kmod/Makefile +++ b/sysutils/fusefs-kmod/Makefile @@ -7,6 +7,7 @@ PORTNAME= fusefs DISTVERSION= 0.3.9-pre1.20080208 +PORTREVISION= 1 CATEGORIES= sysutils kld MASTER_SITES= http://mercurial.creo.hu/repos/fuse4bsd-hg/index.cgi/archive/ PKGNAMESUFFIX= -kmod diff --git a/sysutils/fusefs-kmod/files/patch-fuse_module__fuse_vfsops.c b/sysutils/fusefs-kmod/files/patch-fuse_module__fuse_vfsops.c new file mode 100644 index 00000000000..bc09bafda94 --- /dev/null +++ b/sysutils/fusefs-kmod/files/patch-fuse_module__fuse_vfsops.c @@ -0,0 +1,10 @@ +--- fuse_module/fuse_vfsops.c.orig 2008-04-11 11:34:04.000000000 +0900 ++++ fuse_module/fuse_vfsops.c 2008-04-11 11:34:24.000000000 +0900 +@@ -18,6 +18,7 @@ + #include <sys/namei.h> + #include <sys/mount.h> + #include <sys/sysctl.h> ++#include <sys/fcntl.h> + + #include "fuse.h" + #include "fuse_session.h" |