diff options
author | Noah Watkins <noahwatkins@gmail.com> | 2013-07-23 19:14:56 -0700 |
---|---|---|
committer | Noah Watkins <noahwatkins@gmail.com> | 2013-09-17 10:44:19 -0700 |
commit | 287aa5f4270ca9f8b7bd9376035049a6761dc09a (patch) | |
tree | b96fb4a0ab6b56e6132e76afe0a23aea4d91e8a0 /src/test/libcephfs/test.cc | |
parent | 2ceb719ac45042a7441966392e77f9e7005bbbf6 (diff) | |
download | ceph-wip-port.tar.gz |
wip: assorted fixes for FreeBSD 9.1wip-port
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
Diffstat (limited to 'src/test/libcephfs/test.cc')
-rw-r--r-- | src/test/libcephfs/test.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/libcephfs/test.cc b/src/test/libcephfs/test.cc index 597d049e2a4..0d18bb2320f 100644 --- a/src/test/libcephfs/test.cc +++ b/src/test/libcephfs/test.cc @@ -20,7 +20,16 @@ #include <sys/types.h> #include <sys/stat.h> #include <dirent.h> + +#include "acconfig.h" + +#ifdef HAVE_SYS_XATTR_H #include <sys/xattr.h> +#endif + +#ifdef HAVE_SYS_EXTATTR_H +#include <sys/extattr.h> +#endif TEST(LibCephFS, OpenEmptyComponent) { |