f64211501d
Since commit af313accf1
,
hasher test application depends on dlfcn.h. To avoid putting all apps
under !BR2_STATIC_LIBS dependency, split BR2_PACKAGE_LIBKCAPI_APPS into
several variables.
Moreover, BR2_USE_MMU is only a dependency of BR2_PACKAGE_LIBKCAPI_TEST
as other applications don't use fork.
Finally, enc or dgst applications could be enabled in a next patch if
needed.
Fixes:
- http://autobuild.buildroot.net/results/7c57f3025030eff41a5cde52759821249859caf1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
614 B
Plaintext
28 lines
614 B
Plaintext
config BR2_PACKAGE_LIBKCAPI
|
|
bool "libkcapi"
|
|
help
|
|
Linux Kernel Crypto API userspace interface library
|
|
|
|
http://www.chronox.de/libkcapi.html
|
|
|
|
if BR2_PACKAGE_LIBKCAPI
|
|
|
|
config BR2_PACKAGE_LIBKCAPI_HASHER
|
|
bool "build hasher application"
|
|
depends on !BR2_STATIC_LIBS # dlfcn.h
|
|
|
|
comment "hasher application needs a toolchain w/ dynamic library"
|
|
depends on BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_LIBKCAPI_RNGAPP
|
|
bool "build rng read application"
|
|
|
|
config BR2_PACKAGE_LIBKCAPI_SPEED
|
|
bool "build speed-test program"
|
|
|
|
config BR2_PACKAGE_LIBKCAPI_TEST
|
|
bool "build test program"
|
|
depends on BR2_USE_MMU # fork()
|
|
|
|
endif
|