mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
bump version to 2022.02.9
add miyoo_defconfig
This commit is contained in:
@@ -3,6 +3,9 @@ config BR2_PACKAGE_LIBKRB5
|
||||
# needs fork()
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_STATIC_LIBS
|
||||
select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
|
||||
select BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4 if BR2_PACKAGE_LIBOPENSSL
|
||||
select BR2_PACKAGE_LIBOPENSSL_ENABLE_RC4 if BR2_PACKAGE_LIBOPENSSL
|
||||
help
|
||||
Kerberos is a system for authenticating users and services
|
||||
on a network. Kerberos is a trusted third-party service.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 02a4e700f10936f937cd1a4c303cab8687a11abecc6107bd4b706b9329cd5400 krb5-1.18.1.tar.gz
|
||||
sha256 704aed49b19eb5a7178b34b2873620ec299db08752d6a8574f95d41879ab8851 krb5-1.20.1.tar.gz
|
||||
|
||||
# Hash for license file:
|
||||
sha256 b7a5f14a8719bce5e49a761998aa55438fc890fb40f71228d6a49546f6d5690d NOTICE
|
||||
sha256 cfadcf7b2ead2f3af793c25c00638c9908ac0023b101695f40cb9a03b16811dc NOTICE
|
||||
|
||||
@@ -4,13 +4,15 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBKRB5_VERSION_MAJOR = 1.18
|
||||
LIBKRB5_VERSION_MAJOR = 1.20
|
||||
LIBKRB5_VERSION = $(LIBKRB5_VERSION_MAJOR).1
|
||||
LIBKRB5_SITE = https://web.mit.edu/kerberos/dist/krb5/$(LIBKRB5_VERSION_MAJOR)
|
||||
LIBKRB5_SOURCE = krb5-$(LIBKRB5_VERSION).tar.gz
|
||||
LIBKRB5_SUBDIR = src
|
||||
LIBKRB5_LICENSE = MIT
|
||||
LIBKRB5_LICENSE = MIT, BSD-2-Clause, BSD-3-Clause, BSD-4-Clause, others
|
||||
LIBKRB5_LICENSE_FILES = NOTICE
|
||||
LIBKRB5_CPE_ID_VENDOR = mit
|
||||
LIBKRB5_CPE_ID_PRODUCT = kerberos_5
|
||||
LIBKRB5_DEPENDENCIES = host-bison $(TARGET_NLS_DEPENDENCIES)
|
||||
LIBKRB5_INSTALL_STAGING = YES
|
||||
|
||||
@@ -32,6 +34,11 @@ LIBKRB5_CONF_OPTS = \
|
||||
--without-tcl \
|
||||
--disable-rpath
|
||||
|
||||
# Enabling static and shared at the same time is not supported
|
||||
ifeq ($(BR2_SHARED_STATIC_LIBS),y)
|
||||
LIBKRB5_CONF_OPTS += --disable-static
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENLDAP),y)
|
||||
LIBKRB5_CONF_OPTS += --with-ldap
|
||||
LIBKRB5_DEPENDENCIES += openldap
|
||||
@@ -39,6 +46,21 @@ else
|
||||
LIBKRB5_CONF_OPTS += --without-ldap
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
|
||||
LIBKRB5_CONF_OPTS += \
|
||||
--enable-pkinit \
|
||||
--with-crypto-impl=openssl \
|
||||
--with-spake-openssl \
|
||||
--with-tls-impl=openssl
|
||||
LIBKRB5_DEPENDENCIES += openssl
|
||||
else
|
||||
LIBKRB5_CONF_OPTS += \
|
||||
--disable-pkinit \
|
||||
--with-crypto-impl=builtin \
|
||||
--without-spake-openssl \
|
||||
--without-tls-impl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBEDIT),y)
|
||||
LIBKRB5_CONF_OPTS += --with-libedit
|
||||
LIBKRB5_DEPENDENCIES += host-pkgconf libedit
|
||||
|
||||
Reference in New Issue
Block a user