diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-06-01 13:29:38 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-06-02 02:13:49 +0200 |
commit | c290cdb9349220ba70b54143e1432da0230e2cee (patch) | |
tree | 4ebf0aa557376557eaec362eaa14f587c53ea1ec /source3/include | |
parent | 664af060ac9ea83b565fbb817bb63d67d83843ef (diff) | |
download | samba-c290cdb9349220ba70b54143e1432da0230e2cee.tar.gz samba-c290cdb9349220ba70b54143e1432da0230e2cee.tar.bz2 samba-c290cdb9349220ba70b54143e1432da0230e2cee.zip |
lib/replace: xattr wrappers in lib/replace rather than source3/lib/system.c
This also moves all the still-used configure tests etc. The unused OSF API
is also removed at this time.
Andrew Bartlett
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/includes.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 88b8b4fef2..f25d1c2fcf 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -137,21 +137,6 @@ #endif #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 - -#ifdef HAVE_SYS_EA_H -#include <sys/ea.h> -#endif - -#ifdef HAVE_SYS_EXTATTR_H -#include <sys/extattr.h> -#endif - #ifdef HAVE_SYS_UIO_H #include <sys/uio.h> #endif @@ -501,14 +486,6 @@ char *talloc_asprintf_strupper_m(TALLOC_CTX *t, const char *fmt, ...) PRINTF_ATT #define VXFS_QUOTA #endif -#ifndef XATTR_CREATE -#define XATTR_CREATE 0x1 /* set value, fail if attr already exists */ -#endif - -#ifndef XATTR_REPLACE -#define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */ -#endif - #ifdef TRUE #undef TRUE #endif |