aboutsummaryrefslogtreecommitdiffstats
path: root/testing/dar/configure-sys-xattr.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/dar/configure-sys-xattr.patch')
-rw-r--r--testing/dar/configure-sys-xattr.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/testing/dar/configure-sys-xattr.patch b/testing/dar/configure-sys-xattr.patch
deleted file mode 100644
index e1cafa98137..00000000000
--- a/testing/dar/configure-sys-xattr.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- ./configure.ac
-+++ ./configure.ac
-@@ -648,7 +648,7 @@
- [ AC_MSG_CHECKING([for Extended Attribute support])
- AC_MSG_RESULT([disabled])
- ],
-- [ AC_CHECK_HEADERS([attr/xattr.h])
-+ [ AC_CHECK_HEADERS([attr/xattr.h sys/xattr.h])
- AC_CHECK_LIB(attr, [lgetxattr], [], [])
- AC_MSG_CHECKING([for Unix Extended Attribute support])
- AC_LINK_IFELSE([AC_LANG_PROGRAM([[extern "C" {
-@@ -658,6 +658,9 @@
- #if HAVE_ATTR_XATTR_H
- #include <attr/xattr.h>
- #endif
-+ #if HAVE_SYS_XATTR_H
-+ #include <sys/xattr.h>
-+ #endif
- }]],
- [ lgetxattr((char *)0, (char *)0, (void *)0, 0); ])
- ],