summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Glagolev2015-03-06 15:21:22 +0300
committerVlad Glagolev2015-03-06 15:21:22 +0300
commit0923d5b60f79805e46f4e46673b5e519daaca224 (patch)
tree15848ba23ca8a92d360d00676249d4bad513c1e2
parentc0c0ea86a07ab9ee4689f252d3e2d75e9939e0c8 (diff)
exim: use SSL provider (build against libressl confirmed)
-rwxr-xr-xmail/exim/CONFIGURE2
-rwxr-xr-xmail/exim/DEPENDS2
-rw-r--r--mail/exim/HISTORY3
3 files changed, 5 insertions, 2 deletions
diff --git a/mail/exim/CONFIGURE b/mail/exim/CONFIGURE
index 1f55766d9c..e045f4d7a5 100755
--- a/mail/exim/CONFIGURE
+++ b/mail/exim/CONFIGURE
@@ -54,7 +54,7 @@ fi &&
if spell_ok gnutls; then
config_query_list EXIM_TLS 'Enable GNU TLS support?' \
gnutls openssl
-elif spell_ok openssl; then
+elif spell_ok openssl || spell_ok libressl; then
config_query_list EXIM_TLS 'Enable GNU TLS support?' \
openssl gnutls
else
diff --git a/mail/exim/DEPENDS b/mail/exim/DEPENDS
index 9124750353..e09b55ac4e 100755
--- a/mail/exim/DEPENDS
+++ b/mail/exim/DEPENDS
@@ -19,7 +19,7 @@ if [[ "$EXIM_TLS" == "gnutls" ]]; then
depends libgcrypt &&
depends libtasn1
elif [[ "$EXIM_TLS" == "openssl" ]]; then
- depends openssl
+ depends SSL
fi &&
optional_depends cyrus-sasl \
diff --git a/mail/exim/HISTORY b/mail/exim/HISTORY
index 1fa693b8b4..1217ba0ca3 100644
--- a/mail/exim/HISTORY
+++ b/mail/exim/HISTORY
@@ -1,3 +1,6 @@
+2015-03-06 Vlad Glagolev <stealth@sourcemage.org>
+ * DEPENDS, CONFIGURE: use SSL provider
+
2014-11-28 Vlad Glagolev <stealth@sourcemage.org>
* DEPENDS, BUILD: added ability to build with experimental SPF support