aboutsummaryrefslogtreecommitdiffstats
path: root/mail/exim
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@FreeBSD.org>2015-01-16 19:16:20 +0800
committerVsevolod Stakhov <vsevolod@FreeBSD.org>2015-01-16 19:16:20 +0800
commit62eea476c004ca15c73be80610a389912d0dbe69 (patch)
treeb276811149a7e1ca10b1098c8d3f13b8ebd68c1b /mail/exim
parentdbfdaa09ec19130d0be75dfcce1694bfcc0e9ce1 (diff)
downloadfreebsd-ports-gnome-62eea476c004ca15c73be80610a389912d0dbe69.tar.gz
freebsd-ports-gnome-62eea476c004ca15c73be80610a389912d0dbe69.tar.zst
freebsd-ports-gnome-62eea476c004ca15c73be80610a389912d0dbe69.zip
Use openssl from the ports for FreeBSD < 10 and DANE option is enabled.
Do not bump portrevision since DANE is not enabled by default. PR: 196722 Submitted by: Gary <freebsd-bugzilla at in-addr.com>
Diffstat (limited to 'mail/exim')
-rw-r--r--mail/exim/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile
index b05fa9bcb7ab..d501a22d97fe 100644
--- a/mail/exim/Makefile
+++ b/mail/exim/Makefile
@@ -80,8 +80,14 @@ IGNORE= you cannot enable DMARC without SPF and DKIM support
# DANE implies DNSSEC
.if ${PORT_OPTIONS:MDANE}
-.if ! ${PORT_OPTIONS:MDNSSEC}
-IGNORE= you cannot enable DANE without DNSSEC support
+.if ! ${PORT_OPTIONS:MDNSSEC} || ! ${PORT_OPTIONS:MTLS}
+IGNORE= you cannot enable DANE without DNSSEC support or without TLS support
+.endif
+# Use Openssl from the ports
+.if ${OSVERSION} < 1000000
+. if ! ${PORT_OPTIONS:MGNUTLS}
+WITH_OPENSSL_PORT= yes
+. endif
.endif
.endif