mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 23:43:34 +08:00
b36ad03063
- Fix some clang issues due to illegal pointers, thanks to Stefan Weil.
- Fix memory leak caught by oss-fuzz, thanks to Dmitry Baryshkov.
- Fix bugs unveiled by Static Analysis, reported by Simo Sorce.
- LICENSE has been renamed to COPYING since
a72a8d1ef1
https://gitlab.com/gnutls/libtasn1/-/blob/v4.17.0/NEWS
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
730 B
Makefile
24 lines
730 B
Makefile
################################################################################
|
|
#
|
|
# libtasn1
|
|
#
|
|
################################################################################
|
|
|
|
LIBTASN1_VERSION = 4.17.0
|
|
LIBTASN1_SITE = $(BR2_GNU_MIRROR)/libtasn1
|
|
LIBTASN1_DEPENDENCIES = host-bison host-pkgconf
|
|
LIBTASN1_LICENSE = GPL-3.0+ (tests, tools), LGPL-2.1+ (library)
|
|
LIBTASN1_LICENSE_FILES = COPYING doc/COPYING doc/COPYING.LESSER
|
|
LIBTASN1_CPE_ID_VENDOR = gnu
|
|
LIBTASN1_INSTALL_STAGING = YES
|
|
|
|
# We're patching fuzz/Makefile.am
|
|
LIBTASN1_AUTORECONF = YES
|
|
|
|
# 'missing' fallback logic botched so disable it completely
|
|
LIBTASN1_CONF_ENV = MAKEINFO="true"
|
|
|
|
LIBTASN1_CONF_OPTS = CFLAGS="$(TARGET_CFLAGS) -std=gnu99"
|
|
|
|
$(eval $(autotools-package))
|