mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
package/xorriso: fix to use the system xattr header
We don't carry a git-formatted patch, because upstream is in fact a collection of git trees, while the release tarball is an aggregate of those repositories. Thus, the layout is different between the tarball and the SCM... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Steve Kenton <skenton@ou.edu> [Thomas: - add host-pkgconf as a dependency of host-xorriso, since it's needed for autoreconf to work - drop HOST_XORRISO_AUTORECONF = YES, since it's implied by XORRISO_AUTORECONF = YES.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit 798d1ec30936cc31e784d40af126f509e69d7b0d) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
2106720f3b
commit
4245816f7a
33
package/xorriso/0001-use-sys-xattr.h.patch
Normal file
33
package/xorriso/0001-use-sys-xattr.h.patch
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
Use system <sys/xattr.h>
|
||||||
|
|
||||||
|
The one from attr is no longer installed with latest version.
|
||||||
|
|
||||||
|
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
||||||
|
|
||||||
|
---
|
||||||
|
Upstream status: alternate, more complex patch pending...
|
||||||
|
|
||||||
|
diff -durN xorriso-1.4.6.orig/configure.ac xorriso-1.4.6/configure.ac
|
||||||
|
--- xorriso-1.4.6.orig/configure.ac 2016-09-16 15:51:33.000000000 +0200
|
||||||
|
+++ xorriso-1.4.6/configure.ac 2018-05-06 23:45:38.377153069 +0200
|
||||||
|
@@ -264,7 +264,7 @@
|
||||||
|
dnl Check whether there is the header for Linux xattr.
|
||||||
|
dnl If not, erase this macro which would enable use of listxattr and others
|
||||||
|
XATTR_DEF="-DLibisofs_with_aaip_xattR"
|
||||||
|
- AC_CHECK_HEADER(attr/xattr.h, AC_CHECK_LIB(c, listxattr, X= ,
|
||||||
|
+ AC_CHECK_HEADER(sys/xattr.h, AC_CHECK_LIB(c, listxattr, X= ,
|
||||||
|
XATTR_DEF= ), XATTR_DEF= )
|
||||||
|
fi
|
||||||
|
elif test x"$LIBBURNIA_SUPP_FATTR" = xextattr
|
||||||
|
diff -durN xorriso-1.4.6.orig/libisofs/aaip-os-linux.c xorriso-1.4.6/libisofs/aaip-os-linux.c
|
||||||
|
--- xorriso-1.4.6.orig/libisofs/aaip-os-linux.c 2016-09-16 15:51:34.000000000 +0200
|
||||||
|
+++ xorriso-1.4.6/libisofs/aaip-os-linux.c 2018-05-06 23:47:25.764941583 +0200
|
||||||
|
@@ -30,7 +30,7 @@
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef Libisofs_with_aaip_xattR
|
||||||
|
-#include <attr/xattr.h>
|
||||||
|
+#include <sys/xattr.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
@ -8,6 +8,19 @@ XORRISO_VERSION = 1.4.6
|
|||||||
XORRISO_SITE = $(BR2_GNU_MIRROR)/xorriso
|
XORRISO_SITE = $(BR2_GNU_MIRROR)/xorriso
|
||||||
XORRISO_LICENSE = GPL-3.0+
|
XORRISO_LICENSE = GPL-3.0+
|
||||||
XORRISO_LICENSE_FILES = COPYING COPYRIGHT
|
XORRISO_LICENSE_FILES = COPYING COPYRIGHT
|
||||||
|
|
||||||
|
# 0001-use-sys-xattr.h.patch
|
||||||
|
XORRISO_DEPENDENCIES = host-pkgconf
|
||||||
|
HOST_XORRISO_DEPENDENCIES = host-pkgconf
|
||||||
|
XORRISO_AUTORECONF = YES
|
||||||
|
|
||||||
|
# Make autoreconf happy
|
||||||
|
define XORRISO_NEWS
|
||||||
|
touch $(@D)/NEWS
|
||||||
|
endef
|
||||||
|
XORRISO_POST_PATCH_HOOKS += XORRISO_NEWS
|
||||||
|
HOST_XORRISO_POST_PATCH_HOOKS += XORRISO_NEWS
|
||||||
|
|
||||||
# Disable everything until we actually need those features, and add the correct
|
# Disable everything until we actually need those features, and add the correct
|
||||||
# host libraries
|
# host libraries
|
||||||
HOST_XORRISO_CONF_OPTS = \
|
HOST_XORRISO_CONF_OPTS = \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user