diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-10-21 18:51:50 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-10-21 21:28:13 +0200 |
| commit | dfa1817d31a9ad7c9e1c54e717a30c224ec36707 (patch) | |
| tree | ff4b1bd85b2cf9271ac4fef7a07e881cc108d70a | |
| parent | dbc97c0e46559afa69982e22f7c578e5009e7147 (diff) | |
| download | buildroot-dfa1817d31a9ad7c9e1c54e717a30c224ec36707.tar.gz buildroot-dfa1817d31a9ad7c9e1c54e717a30c224ec36707.zip | |
openldap: supports only the real OpenSSL, not LibreSSL
openldap will not build with LibreSSL without patches, so let's
support only OpenSSL.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/openldap/openldap.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/openldap/openldap.mk b/package/openldap/openldap.mk index 90ff1123b4..56066f9133 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 |

