1config BR2_PACKAGE_OPENLDAP 2 bool "openldap" 3 depends on BR2_USE_WCHAR 4 depends on BR2_USE_MMU # needs fork() 5 help 6 OpenLDAP Software is an open source implementation of the 7 Lightweight Directory Access Protocol. 8 9 This only installs client-side support. 10 11 https://www.openldap.org/ 12 13if BR2_PACKAGE_OPENLDAP 14 15config BR2_PACKAGE_OPENLDAP_CLIENTS 16 bool "openldap client binaries" 17 default y 18 help 19 Install the OpenLDAP client tools (ldapadd, ldapcompare, 20 ldapdelete, ldapexop, ldapmodify, ldapmodrdn, ldappasswd, 21 ldapsearch, ldapurl, ldapwhoami) 22 23endif 24 25comment "openldap needs a toolchain w/ wchar" 26 depends on BR2_USE_MMU # needs fork() 27 depends on !BR2_USE_WCHAR 28