Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Dec 2018 03:21:16 +0000 (UTC)
From:      Dima Panov <fluffy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r488057 - in head/mail: opensmtpd opensmtpd-devel
Message-ID:  <201812220321.wBM3LGSM030234@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: fluffy
Date: Sat Dec 22 03:21:16 2018
New Revision: 488057
URL: https://svnweb.freebsd.org/changeset/ports/488057

Log:
  - Unbreak on 12+ with SSL_DEFAULT=libressl[-devel]
  
  Submitted by:	gahr

Modified:
  head/mail/opensmtpd-devel/Makefile
  head/mail/opensmtpd/Makefile

Modified: head/mail/opensmtpd-devel/Makefile
==============================================================================
--- head/mail/opensmtpd-devel/Makefile	Sat Dec 22 03:09:08 2018	(r488056)
+++ head/mail/opensmtpd-devel/Makefile	Sat Dec 22 03:21:16 2018	(r488057)
@@ -62,8 +62,10 @@ CONFIGURE_ARGS+=	--with-libasr=${LOCALBASE} \
 
 .include <bsd.port.pre.mk>
 
-.if ${OPSYS} == FreeBSD && ${OSVERSION} > 1200084
-BROKEN=		Incompatible with Openssl 1.1.x yet
+.if ${OPSYS} == FreeBSD && \
+    ((${OSVERSION} > 1200084 && ${SSL_DEFAULT} == "base") || \
+    (${SSL_DEFAULT} == "openssl111"))
+OBBROKEN=		Incompatible with Openssl 1.1.x yet
 .endif
 
 post-patch:

Modified: head/mail/opensmtpd/Makefile
==============================================================================
--- head/mail/opensmtpd/Makefile	Sat Dec 22 03:09:08 2018	(r488056)
+++ head/mail/opensmtpd/Makefile	Sat Dec 22 03:21:16 2018	(r488057)
@@ -60,7 +60,9 @@ CONFIGURE_ARGS+=	--with-libasr=${LOCALBASE} \
 
 .include <bsd.port.pre.mk>
 
-.if ${OPSYS} == FreeBSD && ${OSVERSION} > 1200084
+.if ${OPSYS} == FreeBSD && \
+    ((${OSVERSION} > 1200084 && ${SSL_DEFAULT} == "base") || \
+    (${SSL_DEFAULT} == "openssl111"))
 BROKEN=		Incompatible with Openssl 1.1.x yet
 .endif
 



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