svn commit: r488057 - in head/mail: opensmtpd opensmtpd-devel

Dima Panov fluffy at FreeBSD.org
Sat Dec 22 03:21:17 UTC 2018


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
 


More information about the svn-ports-all mailing list