diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-10-21 19:02:11 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-10-21 21:28:13 +0200 |
commit | 1eefb3d9b8d6606fe6bfff6727e6a4d2b41c8e60 (patch) | |
tree | 9b9f5a9e4b17139c49a1e6ddb4d00694518d721e | |
parent | dfa1817d31a9ad7c9e1c54e717a30c224ec36707 (diff) | |
download | buildroot-1eefb3d9b8d6606fe6bfff6727e6a4d2b41c8e60.tar.gz buildroot-1eefb3d9b8d6606fe6bfff6727e6a4d2b41c8e60.zip |
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 <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/libevent/libevent.mk | 4 |
1 files changed, 2 insertions, 2 deletions
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 |