[Buildroot] [git commit] openldap: supports only the real OpenSSL, not LibreSSL

Thomas Petazzoni thomas.petazzoni at free-electrons.com
Sat Oct 21 19:28:13 UTC 2017


commit: https://git.buildroot.net/buildroot/commit/?id=dfa1817d31a9ad7c9e1c54e717a30c224ec36707
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

openldap will not build with LibreSSL without patches, so let's
support only OpenSSL.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni at free-electrons.com>
---
 package/openldap/openldap.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/openldap/openldap.mk b/package/openldap/openldap.mk
index 90ff112..56066f9 100644
--- a/package/openldap/openldap.mk
+++ b/package/openldap/openldap.mk
@@ -12,8 +12,8 @@ OPENLDAP_LICENSE_FILES = LICENSE
 OPENLDAP_INSTALL_STAGING = YES
 OPENLDAP_DEPENDENCIES = host-pkgconf
 
-ifeq ($(BR2_PACKAGE_OPENSSL),y)
-OPENLDAP_TLS = openssl
+ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
+OPENLDAP_TLS = libopenssl
 OPENLDAP_DEPENDENCIES += openssl
 else ifeq ($(BR2_PACKAGE_GNUTLS),y)
 OPENLDAP_TLS = gnutls


More information about the buildroot mailing list