summaryrefslogtreecommitdiffstats
path: root/external/meta-security/recipes-ids/samhain/files/fix-build-with-new-version-attr.patch
blob: eaf30dbbac78bab2876f1a461b88213c207e0804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
From e67acafa62f71f0015ed548918b98ed0b1ded128 Mon Sep 17 00:00:00 2001
From: Yi Zhao <yi.zhao@windriver.com>
Date: Sun, 19 Jan 2020 15:53:48 +0800
Subject: [PATCH] fix build with new version attr

The attr/xattr.h has been removed from attr 2.4.48 with commit:
http://git.savannah.nongnu.org/cgit/attr.git/commit/include?id=7921157890d07858d092f4003ca4c6bae9fd2c38
The xattr syscalls are provided by sys/xattr.h from glibc now.
Remove the checking code to adapt it.

Upstream-Status: Pending

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 aclocal.m4    | 26 +++++++++++---------------
 src/sh_unix.c |  2 +-
 2 files changed, 12 insertions(+), 16 deletions(-)

diff --git a/aclocal.m4 b/aclocal.m4
index ee5b204..38cef8e 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -1453,23 +1453,19 @@ AC_DEFUN([sh_CHECK_POSIX_ACL],
 
 AC_DEFUN([sh_CHECK_XATTR],
 [
-  AC_CHECK_HEADERS(attr/xattr.h)
-  if test $ac_cv_header_attr_xattr_h = yes; then
-
-  	AC_CHECK_LIB([attr], [getxattr], sh_lattr=yes, sh_lattr=no)
-  	if test x"$sh_lattr" = xyes; then
-    		LIBATTR=-lattr
-  	else
-    		LIBATTR=
-  	fi
-  
-  	OLDLIBS="$LIBS"
-  	LIBS="$LIBS $LIBATTR"
-  	AC_CHECK_FUNCS([getxattr lgetxattr fgetxattr],
-                       [sh_fattr=yes],[sh_fattr=no])
-  	LIBS="$OLDLIBS"
+  AC_CHECK_LIB([attr], [getxattr], sh_lattr=yes, sh_lattr=no)
+  if test x"$sh_lattr" = xyes; then
+      LIBATTR=-lattr
+  else
+      LIBATTR=
   fi
 
+  OLDLIBS="$LIBS"
+  LIBS="$LIBS $LIBATTR"
+  AC_CHECK_FUNCS([getxattr lgetxattr fgetxattr],
+	  [sh_fattr=yes],[sh_fattr=no])
+  LIBS="$OLDLIBS"
+
   if test x"$sh_fattr" = xyes; then
 	  AC_DEFINE(USE_XATTR, 1, [Define if you want extended attributes support.])
 	  LIBS="$LIBS $LIBATTR"
diff --git a/src/sh_unix.c b/src/sh_unix.c
index 3ede57f..ef236e9 100644
--- a/src/sh_unix.c
+++ b/src/sh_unix.c
@@ -3681,7 +3681,7 @@ static char * sh_unix_getinfo_acl (char * path, int fd, struct stat * buf)
 
 #ifdef USE_XATTR
 
-#include <attr/xattr.h>
+#include <sys/xattr.h>
 static char * sh_unix_getinfo_xattr_int (char * path, int fd, char * name)
 {
   char *  out   = NULL;
-- 
2.7.4