30479788f1
This bump contains a single change to fix the following build failure with Microblaze raised since bump to version 4.4.25 in commita071bec0a0
: lib/crypt-gensalt-static.c:33:1: error: symver is only supported on ELF platforms 33 | SYMVER_crypt_gensalt; | ^~~~~~~~~~~~~~~~~~~~ Update hash of LICENSING due to new file being added with4ab5f672eb
https://github.com/besser82/libxcrypt/blob/v4.4.26/NEWS Fixes: - http://autobuild.buildroot.org/results/4766bfce9813b7f321369ec45298d16cd6dc251a Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
21 lines
632 B
Makefile
21 lines
632 B
Makefile
################################################################################
|
|
#
|
|
# libxcrypt
|
|
#
|
|
################################################################################
|
|
|
|
LIBXCRYPT_VERSION = 4.4.26
|
|
LIBXCRYPT_SITE = $(call github,besser82,libxcrypt,v$(LIBXCRYPT_VERSION))
|
|
LIBXCRYPT_LICENSE = LGPL-2.1+
|
|
LIBXCRYPT_LICENSE_FILES = LICENSING COPYING.LIB
|
|
LIBXCRYPT_INSTALL_STAGING = YES
|
|
LIBXCRYPT_AUTORECONF = YES
|
|
|
|
# Some warnings turn into errors with some sensitive compilers
|
|
LIBXCRYPT_CONF_OPTS = --disable-werror
|
|
|
|
# Disable obsolete and unsecure API
|
|
LIBXCRYPT_CONF_OPTS += --disable-obsolete_api
|
|
|
|
$(eval $(autotools-package))
|