diff options
author | majianpeng <majianpeng@gmail.com> | 2013-08-01 11:19:02 +0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-08-08 22:49:58 -0700 |
commit | d89942298568913b9067c4f5dde4d2b7eaa7cae2 (patch) | |
tree | 4c4d392672e2882c09b30cdc690ad52110514407 /src/client/fuse_ll.cc | |
parent | f730800bcade9b4a39e92dfe6d6312539e993c64 (diff) | |
download | ceph-wip-fuse.tar.gz |
ceph: Update FUSE_USE_VERSION from 26 to 30.wip-fuse
When compiling, it met this error:
>In file included from /usr/local/include/fuse/fuse.h:19:0,
> from client/fuse_ll.cc:17:
>/usr/local/include/fuse/fuse_common.h:474:4: error: #error only API
>version 30 or greater is supported
Update FUSE_USE_VERSION from 26 to 30.
Signed-off-by: Jianpeng Ma <majianpeng@gmail.com>
Diffstat (limited to 'src/client/fuse_ll.cc')
-rw-r--r-- | src/client/fuse_ll.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/fuse_ll.cc b/src/client/fuse_ll.cc index 9427f201a9f..3f8a4b5d358 100644 --- a/src/client/fuse_ll.cc +++ b/src/client/fuse_ll.cc @@ -12,7 +12,7 @@ * */ -#define FUSE_USE_VERSION 26 +#define FUSE_USE_VERSION 30 #include <fuse/fuse.h> #include <fuse/fuse_lowlevel.h> |