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 5f2d06b..fcecf84 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 464440a..ae5f7d2 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 85ea9bb..3a81e80 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;