]> www.dolda2000.com Git - ashd.git/commitdiff
Use sys/xattr.h instead of attr/xattr.h.
authorFredrik Tolf <fredrik@dolda2000.com>
Sun, 20 Oct 2024 13:57:37 +0000 (15:57 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Sun, 20 Oct 2024 13:57:37 +0000 (15:57 +0200)
configure.ac
src/psendfile.c
src/sendfile.c

index 5f2d06bf959f8e62c18d983117bdfcc6ff92d4a1..fcecf84c74fe5482dac237cdf7a89867c339df18 100644 (file)
@@ -84,7 +84,7 @@ if test -z "$HAS_XATTR"; then
        AC_CHECK_LIB(attr, getxattr, [:], [HAS_XATTR=no])
 fi
 if test -z "$HAS_XATTR"; then
-       AC_CHECK_HEADER(attr/xattr.h, [], [HAS_XATTR=no])
+       AC_CHECK_HEADER(sys/xattr.h, [], [HAS_XATTR=no])
 fi
 if test "$HAS_XATTR" != no; then HAS_XATTR=yes; fi
 if test "$with_xattr" = yes -a "$HAS_XATTR" = no; then
index 464440a0ae598c921f892664466cc64d9e051cd3..ae5f7d2df5b1fe0f961c30f1deebf8c5a38df488 100644 (file)
@@ -42,7 +42,7 @@
 #include <mtio.h>
 
 #ifdef HAVE_XATTR
-#include <attr/xattr.h>
+#include <sys/xattr.h>
 #endif
 
 static magic_t cookie;
index 85ea9bb2a9c5eb7f4938e32e18d9c161f6f9a9e8..3a81e805ec0de2764205403b242d06efe78b70a4 100644 (file)
@@ -37,7 +37,7 @@
 #include <resp.h>
 
 #ifdef HAVE_XATTR
-#include <attr/xattr.h>
+#include <sys/xattr.h>
 #endif
 
 static magic_t cookie = NULL;