diff options
author | Jeremy Allison <jra@samba.org> | 2005-04-10 04:27:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:33 -0500 |
commit | 2c83fb4a06c916e9a68677089a1590a12a9a779f (patch) | |
tree | 00c64392997c2391664358179d193ead74ee748b | |
parent | 83e11ba86c2401ece3c845fd10c22b84e6be7811 (diff) | |
download | samba-2c83fb4a06c916e9a68677089a1590a12a9a779f.tar.gz samba-2c83fb4a06c916e9a68677089a1590a12a9a779f.tar.bz2 samba-2c83fb4a06c916e9a68677089a1590a12a9a779f.zip |
r6266: Add includes for sys/extattr.h and sys/uio.h for FreeBSD xattr code.
Jeremy.
(This used to be commit 695d45bcadbcc1528900255534be47f135160529)
-rw-r--r-- | source3/include/includes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 20f5304591..cf6f493dd6 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -476,6 +476,14 @@ #include <sys/xattr.h> #endif +#ifdef HAVE_SYS_EXTATTR_H +#include <sys/extattr.h> +#endif + +#ifdef HAVE_SYS_UIO_H +#include <sys/uio.h> +#endif + #if HAVE_LOCALE_H #include <locale.h> #endif |