diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-02-20 20:49:17 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-21 14:59:24 +0100 |
commit | 81d5945f1fcfa8ebe4796dc137c585321f1da3ab (patch) | |
tree | 7a62f40f596c46570a8a0d4a14274f9cddceaf82 | |
parent | 024e4e76cd7866630e844e8472642fce8dddd8f8 (diff) | |
download | buildroot-81d5945f1fcfa8ebe4796dc137c585321f1da3ab.tar.gz buildroot-81d5945f1fcfa8ebe4796dc137c585321f1da3ab.zip |
package/links: add --with/--without-ssl
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/links/links.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/links/links.mk b/package/links/links.mk index 97af418e7d..516d4c87bf 100644 --- a/package/links/links.mk +++ b/package/links/links.mk @@ -58,7 +58,10 @@ LINKS_CONF_OPTS += --without-libevent endif ifeq ($(BR2_PACKAGE_OPENSSL),y) +LINKS_CONF_OPTS += --with-ssl --enable-ssl-pkgconfig LINKS_DEPENDENCIES += openssl +else +LINKS_CONF_OPTS += --without-ssl endif ifeq ($(BR2_PACKAGE_XZ),y) |