diff options
author | majianpeng <majianpeng@gmail.com> | 2013-08-01 05:19:02 +0200 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-10-02 23:42:43 +0200 |
commit | 63f5814855d36e9e79a125c9a3321cea62d9dd1c (patch) | |
tree | 36200a17458674e99a09dac1862dd9926b01bf3c /fusetrace | |
parent | client: trim deleted inode (diff) | |
download | ceph-63f5814855d36e9e79a125c9a3321cea62d9dd1c.tar.xz ceph-63f5814855d36e9e79a125c9a3321cea62d9dd1c.zip |
ceph: Update FUSE_USE_VERSION from 26 to 30.
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 'fusetrace')
-rw-r--r-- | fusetrace/fusetrace_ll.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fusetrace/fusetrace_ll.cc b/fusetrace/fusetrace_ll.cc index eb7100a867f..7f2b8438f1f 100644 --- a/fusetrace/fusetrace_ll.cc +++ b/fusetrace/fusetrace_ll.cc @@ -11,7 +11,7 @@ gcc -Wall `pkg-config fuse --cflags --libs` -lulockmgr fusexmp_fh.c -o fusexmp_fh */ -#define FUSE_USE_VERSION 26 +#define FUSE_USE_VERSION 30 #ifdef HAVE_CONFIG_H #include <config.h> |