Add bsdunzip option to avoid the following build failure raised since bump to version 3.7.1 in commit7991d2c48aandc157e4ce8e: CCLD bsdunzip /home/autobuild/autobuild/instance-4/output-1/host/lib/gcc/powerpc-buildroot-linux-musl/12.3.0/../../../../powerpc-buildroot-linux-musl/bin/ld: cannot find -lz: No such file or directory By handling it explicitly, we can specify whether the dynamic or static library should be used, according to what we actually have available. Fixes: - http://autobuild.buildroot.org/results/aaf7fdefa0b7bd7e5ac743487c197544c1a2ce6f Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Tested-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
40 lines
921 B
Plaintext
40 lines
921 B
Plaintext
comment "libarchive needs a toolchain w/ wchar"
|
|
depends on !BR2_USE_WCHAR
|
|
|
|
config BR2_PACKAGE_LIBARCHIVE
|
|
bool "libarchive"
|
|
depends on BR2_USE_WCHAR
|
|
help
|
|
Libarchive is a reusable C library for reading and writing a
|
|
variety of streaming archive formats.
|
|
|
|
https://www.libarchive.org/
|
|
|
|
if BR2_PACKAGE_LIBARCHIVE
|
|
|
|
config BR2_PACKAGE_LIBARCHIVE_BSDTAR
|
|
bool "bsdtar"
|
|
help
|
|
The 'bsdtar' program is a full-featured 'tar'
|
|
replacement built on libarchive.
|
|
|
|
config BR2_PACKAGE_LIBARCHIVE_BSDCPIO
|
|
bool "bsdcpio"
|
|
help
|
|
The 'bsdcpio' program is a different interface to
|
|
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.
|
|
|
|
config BR2_PACKAGE_LIBARCHIVE_BSDUNZIP
|
|
bool "bsdunzip"
|
|
help
|
|
The 'bsdunzip' program is a simple replacement tool
|
|
for Info-ZIP.
|
|
|
|
endif
|