272b5ecd18
Since we build-depend on zlib, forcibly select it from kconfig. This went unnoticed so far, because we did select openssl which in turn selects zlib. But rpm needs zlib for itself, too. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Peter Korsgaard <jacmet@uclibc.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
40 lines
921 B
Plaintext
40 lines
921 B
Plaintext
comment "rpm needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU # fork()
|
|
|
|
config BR2_PACKAGE_RPM
|
|
bool "rpm"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # beecrypt
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_BEECRYPT
|
|
select BR2_PACKAGE_POPT
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_NEON
|
|
select BR2_PACKAGE_NEON_XML
|
|
select BR2_PACKAGE_NEON_ZLIB
|
|
select BR2_PACKAGE_NEON_SSL
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
The RPM package management system.
|
|
|
|
http://rpm5.org
|
|
|
|
if BR2_PACKAGE_RPM
|
|
|
|
config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
|
|
bool "support for bzip2 payloads"
|
|
select BR2_PACKAGE_BZIP2
|
|
help
|
|
Support for bzip2 payloads in RPM.
|
|
|
|
config BR2_PACKAGE_RPM_XZ_PAYLOADS
|
|
bool "support for xz payloads"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
help
|
|
Support for xz payloads in RPM.
|
|
|
|
comment "xz payload support needs a toolchain w/ C++"
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|
|
|
|
endif
|