diff options
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/includes.h | 11 |
1 files changed, 11 insertions, 0 deletions
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 <sys/attributes.h> +#endif + +/* mutually exclusive (SuSE 8.2) */ +#if HAVE_ATTR_XATTR_H +#include <attr/xattr.h> +#elif HAVE_SYS_XATTR_H +#include <sys/xattr.h> +#endif + #endif /* _INCLUDES_H */ |