kumquat-buildroot/package/libkrb5/Config.in
Fabrice Fontaine b7a5b9d06d package/libkrb5: add openssl optional dependency
openssl is an optional dependency which is enabled by default since at
least 2007 and
4c17f25c0f

Enable DES, MD4 and RC4 in openssl to fix build failure raised since
commit a83d41867c

Fixes:
 - http://autobuild.buildroot.org/results/d73b477bd2064aee076f9debfd8d3346c63ba657

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[yann.morin.1998@free.fr: squash the two commits together]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2021-06-13 17:28:00 +02:00

22 lines
818 B
Plaintext

config BR2_PACKAGE_LIBKRB5
bool "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.
That means that there is a third party (the Kerberos server)
that is trusted by all the entities on the network (users
and services, usually called "principals"). This is the MIT
reference implementation of Kerberos V5.
https://web.mit.edu/kerberos/
comment "libkrb5 needs a toolchain w/ dynamic library"
depends on BR2_USE_MMU
depends on BR2_STATIC_LIBS