From: Thomas Petazzoni Date: Sat, 21 Oct 2017 17:02:11 +0000 (+0200) Subject: libevent: supports only the real OpenSSL, not LibreSSL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1eefb3d9b8d6606fe6bfff6727e6a4d2b41c8e60;p=buildroot.git libevent: supports only the real OpenSSL, not LibreSSL libevent will not build with LibreSSL without patches, so let's support only OpenSSL. Signed-off-by: Thomas Petazzoni --- diff --git a/package/libevent/libevent.mk b/package/libevent/libevent.mk index 36bca0b21b..fc4108f6fd 100644 --- a/package/libevent/libevent.mk +++ b/package/libevent/libevent.mk @@ -23,8 +23,8 @@ ifneq ($(BR2_PACKAGE_PYTHON),y) LIBEVENT_POST_INSTALL_TARGET_HOOKS += LIBEVENT_REMOVE_PYSCRIPT endif -ifeq ($(BR2_PACKAGE_OPENSSL),y) -LIBEVENT_DEPENDENCIES += host-pkgconf openssl +ifeq ($(BR2_PACKAGE_LIBOPENSSL),y) +LIBEVENT_DEPENDENCIES += host-pkgconf libopenssl LIBEVENT_CONF_OPTS += --enable-openssl else LIBEVENT_CONF_OPTS += --disable-openssl