mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-23 06:18:15 +08:00
support systems without ENODATA
This commit is contained in:
parent
f0f8e527b4
commit
709dda5069
|
@ -18,10 +18,18 @@
|
|||
#include <attr/xattr.h>
|
||||
#endif
|
||||
|
||||
#ifndef ENOATTR
|
||||
#if defined(ENODATA) && !defined(ENOATTR)
|
||||
#define ENOATTR ENODATA
|
||||
#endif
|
||||
|
||||
#if defined(ENOATTR) && !defined(ENODATA)
|
||||
#define ENODATA ENOATTR
|
||||
#endif
|
||||
|
||||
#if !defined(ENOATTR) && !defined(ENODATA)
|
||||
#error "Neither ENOATTR or ENODATA defined: please contact mergerfs author with platform information"
|
||||
#endif
|
||||
|
||||
#ifndef XATTR_CREATE
|
||||
#define XATTR_CREATE 0x1
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue
Block a user