mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-02-24 02:16:10 -05:00
xattr headers have been provided by glibc (at least on Linux/glibc) for many years now. Reorder the inclusion of xattr headers to attempt compatibility/legacy after the common case. This prevents the warning without changing compatibility to non-glibc systems. * Add dependency on lib/sysxattrs.h header in Makefile Co-authored-by: Wayne Davison <wayne@opencoder.net>
27 lines
728 B
C
27 lines
728 B
C
#ifdef SUPPORT_XATTRS
|
|
|
|
#if defined HAVE_SYS_XATTR_H
|
|
#include <sys/xattr.h>
|
|
#elif defined HAVE_ATTR_XATTR_H
|
|
#include <attr/xattr.h>
|
|
#elif defined HAVE_SYS_EXTATTR_H
|
|
#include <sys/extattr.h>
|
|
#endif
|
|
|
|
/* Linux 2.4 does not define this as a distinct errno value: */
|
|
#ifndef ENOATTR
|
|
#define ENOATTR ENODATA
|
|
#endif
|
|
|
|
ssize_t sys_lgetxattr(const char *path, const char *name, void *value, size_t size);
|
|
ssize_t sys_fgetxattr(int filedes, const char *name, void *value, size_t size);
|
|
int sys_lsetxattr(const char *path, const char *name, const void *value, size_t size);
|
|
int sys_lremovexattr(const char *path, const char *name);
|
|
ssize_t sys_llistxattr(const char *path, char *list, size_t size);
|
|
|
|
#else
|
|
|
|
/* No xattrs available */
|
|
|
|
#endif
|