Merge pull request #304 from trapexit/freebsd

fix some build issues with Debian/kFreeBSD
This commit is contained in:
Antonio SJ Musumeci 2016-08-26 13:10:41 -04:00 committed by GitHub
commit a0885e33dc
2 changed files with 10 additions and 1 deletions

View File

@ -15,6 +15,7 @@
*/ */
#include <errno.h> #include <errno.h>
#include <sys/types.h>
namespace fs namespace fs
{ {

View File

@ -18,10 +18,18 @@
#include <attr/xattr.h> #include <attr/xattr.h>
#endif #endif
#ifndef ENOATTR #if defined(ENODATA) && !defined(ENOATTR)
#define ENOATTR ENODATA #define ENOATTR ENODATA
#endif #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 #ifndef XATTR_CREATE
#define XATTR_CREATE 0x1 #define XATTR_CREATE 0x1
#endif #endif