diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-05-21 23:41:24 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-23 15:40:34 +0200 |
commit | 5c8cc5dadd7f587e22b9de02ffc1b0ad8679ae29 (patch) | |
tree | ae81e742ee958cb2b01d97a7f96463f33ee6773b | |
parent | 80ab228959b67b2023d6db383e9aa0640e853b77 (diff) | |
download | buildroot-5c8cc5dadd7f587e22b9de02ffc1b0ad8679ae29.tar.gz buildroot-5c8cc5dadd7f587e22b9de02ffc1b0ad8679ae29.zip |
package/c-icap: add optional support for openssl
Optional OpenSSL was added with version 0.5.1:
https://sourceforge.net/p/c-icap/news/2017/03/the-c-icap-051-is-released-/
https://sourceforge.net/p/c-icap/code/1253/#diff-5
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/c-icap/c-icap.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/c-icap/c-icap.mk b/package/c-icap/c-icap.mk index 82b257406d..e57ecd0ae0 100644 --- a/package/c-icap/c-icap.mk +++ b/package/c-icap/c-icap.mk @@ -54,6 +54,13 @@ else C_ICAP_CONF_OPTS += --without-ldap endif +ifeq ($(BR2_PACKAGE_OPENSSL),y) +C_ICAP_CONF_OPTS += --with-openssl +C_ICAP_DEPENDENCIES += openssl +else +C_ICAP_CONF_OPTS += --without-openssl +endif + ifeq ($(BR2_PACKAGE_PCRE),y) C_ICAP_CONF_OPTS += --with-pcre C_ICAP_DEPENDENCIES += pcre |