1config BR2_PACKAGE_LIBKRB5 2 bool "libkrb5" 3 # needs fork() 4 depends on BR2_USE_MMU 5 depends on !BR2_STATIC_LIBS 6 select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL 7 select BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4 if BR2_PACKAGE_LIBOPENSSL 8 select BR2_PACKAGE_LIBOPENSSL_ENABLE_RC4 if BR2_PACKAGE_LIBOPENSSL 9 help 10 Kerberos is a system for authenticating users and services 11 on a network. Kerberos is a trusted third-party service. 12 That means that there is a third party (the Kerberos server) 13 that is trusted by all the entities on the network (users 14 and services, usually called "principals"). This is the MIT 15 reference implementation of Kerberos V5. 16 17 https://web.mit.edu/kerberos/ 18 19comment "libkrb5 needs a toolchain w/ dynamic library" 20 depends on BR2_USE_MMU 21 depends on BR2_STATIC_LIBS 22