mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
libarchive: add selection of bsdcat
libarchive builds three commandline utilities: bsdtar, bsdcpio, and bsdcat. This change adds control over the third utility to the list of configuration options. Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
a8e42c6369
commit
7ff00b2ad3
@ -24,4 +24,10 @@ config BR2_PACKAGE_LIBARCHIVE_BSDCPIO
|
|||||||
The 'bsdcpio' program is a different interface to
|
The 'bsdcpio' program is a different interface to
|
||||||
essentially the same functionality as 'bsdtar'.
|
essentially the same functionality as 'bsdtar'.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_LIBARCHIVE_BSDCAT
|
||||||
|
bool "bsdcat"
|
||||||
|
help
|
||||||
|
The 'bsdcat' program is a simple replacement tool
|
||||||
|
for zcat, bzcat, xzcat, and such.
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -30,6 +30,16 @@ else
|
|||||||
LIBARCHIVE_CONF_OPTS += --disable-bsdcpio
|
LIBARCHIVE_CONF_OPTS += --disable-bsdcpio
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_LIBARCHIVE_BSDCAT),y)
|
||||||
|
ifeq ($(BR2_STATIC_LIBS),y)
|
||||||
|
LIBARCHIVE_CONF_OPTS += --enable-bsdcat=static
|
||||||
|
else
|
||||||
|
LIBARCHIVE_CONF_OPTS += --enable-bsdcat=shared
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
LIBARCHIVE_CONF_OPTS += --disable-bsdcat
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_ACL),y)
|
ifeq ($(BR2_PACKAGE_ACL),y)
|
||||||
LIBARCHIVE_DEPENDENCIES += acl
|
LIBARCHIVE_DEPENDENCIES += acl
|
||||||
else
|
else
|
||||||
@ -105,6 +115,7 @@ HOST_LIBARCHIVE_DEPENDENCIES = host-zlib
|
|||||||
HOST_LIBARCHIVE_CONF_OPTS = \
|
HOST_LIBARCHIVE_CONF_OPTS = \
|
||||||
--disable-bsdtar \
|
--disable-bsdtar \
|
||||||
--disable-bsdcpio \
|
--disable-bsdcpio \
|
||||||
|
--disable-bsdcat \
|
||||||
--disable-acl \
|
--disable-acl \
|
||||||
--disable-xattr \
|
--disable-xattr \
|
||||||
--without-bz2lib \
|
--without-bz2lib \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user