From: Thomas Petazzoni Date: Sat, 21 Oct 2017 16:48:42 +0000 (+0200) Subject: mosquitto: supports only the real OpenSSL, not LibreSSL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b92c4de9413eceb0696f0eebead8f661a5534c6;p=buildroot.git mosquitto: supports only the real OpenSSL, not LibreSSL mosquitto will not build with LibreSSL without patches, so let's support only OpenSSL. Signed-off-by: Thomas Petazzoni --- diff --git a/package/mosquitto/mosquitto.mk b/package/mosquitto/mosquitto.mk index c763f48ab1..c9b4418d04 100644 --- a/package/mosquitto/mosquitto.mk +++ b/package/mosquitto/mosquitto.mk @@ -30,8 +30,8 @@ else MOSQUITTO_MAKE_OPTS += WITH_THREADING=no endif -ifeq ($(BR2_PACKAGE_OPENSSL),y) -MOSQUITTO_DEPENDENCIES += openssl +ifeq ($(BR2_PACKAGE_LIBOPENSSL),y) +MOSQUITTO_DEPENDENCIES += libopenssl MOSQUITTO_MAKE_OPTS += WITH_TLS=yes else MOSQUITTO_MAKE_OPTS += WITH_TLS=no