diff options
author | Anand Avati <avati@gluster.com> | 2011-05-20 16:56:30 +0000 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-05-30 04:48:58 -0700 |
commit | 7eb3ba062cd0d8ad2d4692c99185af2afde0ee05 (patch) | |
tree | 70a599054d30a40117b729ef0437956fc486ad03 /xlators | |
parent | 24d94224ea8c9b67dd7bb9a2ee929f63717d51d7 (diff) |
fuse: NetBSD portability fixes
Make sure NetBSD pulls proper FUSE header
Thanks to: Emmanuel Dreyfus <manu@netbsd.org>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2923 (NetBSD port)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2923
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.h b/xlators/mount/fuse/src/fuse-bridge.h index f20e47272..98f000593 100644 --- a/xlators/mount/fuse/src/fuse-bridge.h +++ b/xlators/mount/fuse/src/fuse-bridge.h @@ -58,7 +58,7 @@ /* TODO: when supporting posix acl, remove this definition */ #define DISABLE_POSIX_ACL -#ifdef GF_LINUX_HOST_OS +#if defined(GF_LINUX_HOST_OS) || defined(__NetBSD__) #define FUSE_OP_HIGH (FUSE_POLL + 1) #endif #ifdef GF_DARWIN_HOST_OS |