ec2ee79ec1
Fixes: .../x86_64-buildroot-linux-gnu/bin/ld: .../host/x86_64-buildroot-linux-gnu/sysroot/usr/lib/libtomcrypt.a(md5.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a shared object; recompile with -fPIC when building a shared library that links with libtomcrypt. Our only internal user dropbear doesn't do this, so there are no autobuilder failures. Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# libtomcrypt
|
|
#
|
|
################################################################################
|
|
|
|
LIBTOMCRYPT_VERSION = 1.18.2
|
|
LIBTOMCRYPT_SITE = https://github.com/libtom/libtomcrypt/releases/download/v$(LIBTOMCRYPT_VERSION)
|
|
LIBTOMCRYPT_SOURCE = crypt-$(LIBTOMCRYPT_VERSION).tar.xz
|
|
LIBTOMCRYPT_LICENSE = WTFPL
|
|
LIBTOMCRYPT_LICENSE_FILES = LICENSE
|
|
LIBTOMCRYPT_CPE_ID_VENDOR = libtom
|
|
LIBTOMCRYPT_INSTALL_STAGING = YES
|
|
LIBTOMCRYPT_INSTALL_TARGET = NO # only static library
|
|
LIBTOMCRYPT_DEPENDENCIES = libtommath
|
|
|
|
# 0001-fix-CVE-2019-17362.patch
|
|
LIBTOMCRYPT_IGNORE_CVES += CVE-2019-17362
|
|
|
|
LIBTOMCRYPT_CFLAGS = -I./src/headers $(TARGET_CFLAGS) -DLTC_SOURCE -DLTM_DESC
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
|
LIBTOMCRYPT_CFLAGS += -fPIC
|
|
endif
|
|
|
|
define LIBTOMCRYPT_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) CFLAGS="$(LIBTOMCRYPT_CFLAGS)"
|
|
endef
|
|
|
|
define LIBTOMCRYPT_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(STAGING_DIR)" \
|
|
PREFIX=/usr NODOCS=1 INSTALL_USER=$(shell id -u) \
|
|
INSTALL_GROUP=$(shell id -g) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|