svn commit: r377168 - head/mail/exim

Vsevolod Stakhov vsevolod at FreeBSD.org
Fri Jan 16 11:16:21 UTC 2015


Author: vsevolod
Date: Fri Jan 16 11:16:20 2015
New Revision: 377168
URL: https://svnweb.freebsd.org/changeset/ports/377168
QAT: https://qat.redports.org/buildarchive/r377168/

Log:
  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>

Modified:
  head/mail/exim/Makefile

Modified: head/mail/exim/Makefile
==============================================================================
--- head/mail/exim/Makefile	Fri Jan 16 11:05:12 2015	(r377167)
+++ head/mail/exim/Makefile	Fri Jan 16 11:16:20 2015	(r377168)
@@ -80,8 +80,14 @@ IGNORE=	you cannot enable DMARC without 
 
 # 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
 


More information about the svn-ports-all mailing list