2f25654504
GCC defines wchar_t even when wchar support is disabled in uClibc. The LTC_NO_WCHAR macro triggers a local definition of wchar_t that conflicts with the GCC defined one. Remove LTC_NO_WCHAR to avoid that. See also https://github.com/libtom/libtomcrypt/issues/313 for more discussion about this. Fixes: http://autobuild.buildroot.net/results/4ff/4ffb593185f7520d2d9a9cc988aa9c510f253930/ Cc: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
976 B
Makefile
27 lines
976 B
Makefile
################################################################################
|
|
#
|
|
# libtomcrypt
|
|
#
|
|
################################################################################
|
|
|
|
LIBTOMCRYPT_VERSION = 1.18.0
|
|
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_INSTALL_STAGING = YES
|
|
LIBTOMCRYPT_INSTALL_TARGET = NO # only static library
|
|
LIBTOMCRYPT_DEPENDENCIES = libtommath
|
|
|
|
LIBTOMCRYPT_CFLAGS = -I./src/headers $(TARGET_CFLAGS) -DLTC_SOURCE -DLTM_DESC
|
|
|
|
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)" NODOCS=1 INSTALL_USER=$(shell id -u) INSTALL_GROUP=$(shell id -g) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|