3c52e364eb
Fixes (no CVEs assigned yet): * integer overflow in the DN decoder src/dn.c (append_quoted, append_atv) * integer overflow in the BER decoder src/ber-decoder.c (ber_decoder_s) * denial of service due to stack overflow in src/ber-decoder.c (push_decoder_state, pop_decoder_state) Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 lines
638 B
Makefile
17 lines
638 B
Makefile
################################################################################
|
|
#
|
|
# libksba
|
|
#
|
|
################################################################################
|
|
|
|
LIBKSBA_VERSION = 1.3.3
|
|
LIBKSBA_SOURCE = libksba-$(LIBKSBA_VERSION).tar.bz2
|
|
LIBKSBA_SITE = ftp://ftp.gnupg.org/gcrypt/libksba
|
|
LIBKSBA_LICENSE = LGPLv3+ or GPLv2+ (library, headers), GPLv3+ (manual, tests, build system)
|
|
LIBKSBA_LICENSE_FILES = AUTHORS COPYING COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv3
|
|
LIBKSBA_INSTALL_STAGING = YES
|
|
LIBKSBA_DEPENDENCIES = libgpg-error
|
|
LIBKSBA_CONF_OPTS = --with-gpg-error-prefix=$(STAGING_DIR)/usr
|
|
|
|
$(eval $(autotools-package))
|