12d70ebce6
Remove patch (already in version). This version bump only contains a limited set of bug fixes: Changes 1.1.3 * Fix: default location of FIPS 140-2 HMAC control file is .<orig file>.hmac (was accidentally moved to <orig file>.hmac with 1.1.2) Changes 1.1.2 * Fix: Bug fixes for GCC 8.1.0 regarding string length checks by Krzysztof Kozlowski * Enhancement: ensure that tests execute on architectures other than X86 by Ondrej Mosnáček * Fix: Bug fix to initialize FDs at the correct time in kcapi-kernel-if.c by Ondrej Mosnáček * Test fix: Support test execution outside build environment by Ondrej Mosnáček Changes 1.1.1 * Fix: Bug fixes for kcapi_hasher by Ondrej Mosnáček 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.3
|
|
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))
|