1################################################################################ 2# 3# libxcrypt 4# 5################################################################################ 6 7LIBXCRYPT_VERSION = 4.4.36 8LIBXCRYPT_SITE = https://github.com/besser82/libxcrypt/releases/download/v$(LIBXCRYPT_VERSION) 9LIBXCRYPT_SOURCE = libxcrypt-$(LIBXCRYPT_VERSION).tar.xz 10LIBXCRYPT_LICENSE = LGPL-2.1+ 11LIBXCRYPT_LICENSE_FILES = LICENSING COPYING.LIB 12LIBXCRYPT_INSTALL_STAGING = YES 13 14# Some warnings turn into errors with some sensitive compilers 15LIBXCRYPT_CONF_OPTS = --disable-werror 16HOST_LIBXCRYPT_CONF_OPTS = --disable-werror 17 18# Disable obsolete and unsecure API 19LIBXCRYPT_CONF_OPTS += --disable-obsolete_api 20HOST_LIBXCRYPT_CONF_OPTS += --disable-obsolete_api 21 22$(eval $(autotools-package)) 23$(eval $(host-autotools-package)) 24