Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Jan 2015 11:16:21 +0000 (UTC)
From:      Vsevolod Stakhov <vsevolod@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r377168 - head/mail/exim
Message-ID:  <201501161116.t0GBGLlj001291@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501161116.t0GBGLlj001291>