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>
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# libkcapi
|
|
#
|
|
################################################################################
|
|
|
|
LIBKCAPI_VERSION = 1.1.0
|
|
LIBKCAPI_SOURCE = libkcapi-$(LIBKCAPI_VERSION).tar.xz
|
|
LIBKCAPI_SITE = http://www.chronox.de/libkcapi
|
|
LIBKCAPI_AUTORECONF = YES
|
|
LIBKCAPI_INSTALL_STAGING = YES
|
|
LIBKCAPI_LICENSE = BSD-3-Clause (library), BSD-3-Clause or GPL-2.0 (programs)
|
|
LIBKCAPI_LICENSE_FILES = COPYING COPYING.gplv2 COPYING.bsd
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBKCAPI_HASHER),y)
|
|
LIBKCAPI_CONF_OPTS += --enable-kcapi-hasher
|
|
else
|
|
LIBKCAPI_CONF_OPTS += --disable-kcapi-hasher
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBKCAPI_RNGAPP),y)
|
|
LIBKCAPI_CONF_OPTS += --enable-kcapi-rngapp
|
|
else
|
|
LIBKCAPI_CONF_OPTS += --disable-kcapi-rngapp
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBKCAPI_SPEED),y)
|
|
LIBKCAPI_CONF_OPTS += --enable-kcapi-speed
|
|
else
|
|
LIBKCAPI_CONF_OPTS += --disable-kcapi-speed
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBKCAPI_TEST),y)
|
|
LIBKCAPI_CONF_OPTS += --enable-kcapi-test
|
|
else
|
|
LIBKCAPI_CONF_OPTS += --disable-kcapi-test
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|