Browse Source

allow build WITHOUT_XATTR

pull/178/head
Valentin Hilbig 9 years ago
parent
commit
668c4bed1a
  1. 3
      src/fs_xattr.cpp
  2. 2
      src/getxattr.cpp

3
src/fs_xattr.cpp

@ -24,7 +24,10 @@
#include <stdlib.h> #include <stdlib.h>
#include <sys/types.h> #include <sys/types.h>
#ifndef WITHOUT_XATTR
#include <attr/xattr.h> #include <attr/xattr.h>
#endif
#include <errno.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>

2
src/getxattr.cpp

@ -62,7 +62,7 @@ _lgetxattr(const string &path,
return ((rv == -1) ? -errno : rv); return ((rv == -1) ? -errno : rv);
#else #else
return -ENOSUP;
return -ENOTSUP;
#endif #endif
} }

Loading…
Cancel
Save