mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-22 14:54:38 +08:00
Remove FUSE_USE_VERSION, no longer used
This commit is contained in:
parent
0d566befba
commit
a4491169b0
3
Makefile
3
Makefile
|
@ -79,8 +79,7 @@ CXXFLAGS := \
|
||||||
-MMD
|
-MMD
|
||||||
FUSE_FLAGS = \
|
FUSE_FLAGS = \
|
||||||
-Ilibfuse/include \
|
-Ilibfuse/include \
|
||||||
-D_FILE_OFFSET_BITS=64 \
|
-D_FILE_OFFSET_BITS=64
|
||||||
-DFUSE_USE_VERSION=29
|
|
||||||
MFS_FLAGS = \
|
MFS_FLAGS = \
|
||||||
-DUSE_XATTR=$(USE_XATTR) \
|
-DUSE_XATTR=$(USE_XATTR) \
|
||||||
-DUGID_USE_RWLOCK=$(UGID_USE_RWLOCK)
|
-DUGID_USE_RWLOCK=$(UGID_USE_RWLOCK)
|
||||||
|
|
|
@ -72,7 +72,6 @@ FUSE_FLAGS = \
|
||||||
-Ibuild \
|
-Ibuild \
|
||||||
-D_REENTRANT \
|
-D_REENTRANT \
|
||||||
-D_FILE_OFFSET_BITS=64 \
|
-D_FILE_OFFSET_BITS=64 \
|
||||||
-DFUSE_USE_VERSION=29 \
|
|
||||||
-DPACKAGE_VERSION=\"$(VERSION)\" \
|
-DPACKAGE_VERSION=\"$(VERSION)\" \
|
||||||
-DFUSERMOUNT_DIR=\"$(FUSERMOUNT_DIR)\"
|
-DFUSERMOUNT_DIR=\"$(FUSERMOUNT_DIR)\"
|
||||||
LDFLAGS := \
|
LDFLAGS := \
|
||||||
|
|
|
@ -9,20 +9,6 @@
|
||||||
#ifndef _FUSE_H_
|
#ifndef _FUSE_H_
|
||||||
#define _FUSE_H_
|
#define _FUSE_H_
|
||||||
|
|
||||||
/** @file
|
|
||||||
*
|
|
||||||
* This file defines the library interface of FUSE
|
|
||||||
*
|
|
||||||
* IMPORTANT: you should define FUSE_USE_VERSION before including this
|
|
||||||
* header. To use the newest API define it to 26 (recommended for any
|
|
||||||
* new application), to use the old API define it to 21 (default) 22
|
|
||||||
* or 25, to use the even older 1.X API define it to 11.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef FUSE_USE_VERSION
|
|
||||||
#define FUSE_USE_VERSION 21
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "extern_c.h"
|
#include "extern_c.h"
|
||||||
#include "fuse_common.h"
|
#include "fuse_common.h"
|
||||||
|
|
||||||
|
|
|
@ -9,21 +9,6 @@
|
||||||
#ifndef _FUSE_LOWLEVEL_H_
|
#ifndef _FUSE_LOWLEVEL_H_
|
||||||
#define _FUSE_LOWLEVEL_H_
|
#define _FUSE_LOWLEVEL_H_
|
||||||
|
|
||||||
/** @file
|
|
||||||
*
|
|
||||||
* Low level API
|
|
||||||
*
|
|
||||||
* IMPORTANT: you should define FUSE_USE_VERSION before including this
|
|
||||||
* header. To use the newest API define it to 26 (recommended for any
|
|
||||||
* new application), to use the old API define it to 24 (default) or
|
|
||||||
* 25
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "fuse_msgbuf.h"
|
|
||||||
#ifndef FUSE_USE_VERSION
|
|
||||||
#define FUSE_USE_VERSION 24
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "extern_c.h"
|
#include "extern_c.h"
|
||||||
#include "fuse_common.h"
|
#include "fuse_common.h"
|
||||||
#include "fuse_kernel.h"
|
#include "fuse_kernel.h"
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
CXX="${CXX:-c++}"
|
|
||||||
FUSE_CFLAGS="-Ilibfuse/include -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=29"
|
|
||||||
|
|
||||||
echo "#include \"fuse.h\"" | ${CXX} -E ${FUSE_CFLAGS} - | grep "${1}" > /dev/null
|
|
||||||
|
|
||||||
[ "$?" != "0" ]; echo $?
|
|
Loading…
Reference in New Issue
Block a user