From 00e05a0b8ba4c6b16a53d20fa5a8eef8fbd6263a Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 24 Sep 2004 04:49:45 +0000 Subject: r2582: Merge checks for xattr and acl libraries from Samba3 so the {get,set}ntacl programs can build on non-xattr machines. (This used to be commit daad76207dbb4060c231a58c99970e837e1e858f) --- source4/include/includes.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'source4/include') diff --git a/source4/include/includes.h b/source4/include/includes.h index a5fd620049..8b20ee9b4f 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -1057,5 +1057,16 @@ time_t timegm(struct tm *tm); #define VXFS_QUOTA #endif +#if HAVE_SYS_ATTRIBUTES_H +#include +#endif + +/* mutually exclusive (SuSE 8.2) */ +#if HAVE_ATTR_XATTR_H +#include +#elif HAVE_SYS_XATTR_H +#include +#endif + #endif /* _INCLUDES_H */ -- cgit