cc89b6f39f
The RPM package requires dynamic linking support (dlfcn.h) for its capabilities related to plugins (and possibly more). The following commit adds a dependency to !BR2_STATIC_LIBS. Signed-off-by: James Knight <james.knight@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
671 B
Plaintext
22 lines
671 B
Plaintext
comment "rpm needs a toolchain w/ dynamic library and threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
|
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
|
depends on BR2_USE_MMU
|
|
|
|
config BR2_PACKAGE_RPM
|
|
bool "rpm"
|
|
depends on !BR2_STATIC_LIBS # dlfcn.h
|
|
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # beecrypt
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_BEECRYPT if !BR2_PACKAGE_LIBNSS
|
|
select BR2_PACKAGE_BERKELEYDB
|
|
select BR2_PACKAGE_FILE
|
|
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
|
select BR2_PACKAGE_POPT
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
The RPM Package Manager (RPM).
|
|
|
|
http://www.rpm.org/
|