diff options
author | fluffy <fluffy@FreeBSD.org> | 2018-12-22 11:21:16 +0800 |
---|---|---|
committer | fluffy <fluffy@FreeBSD.org> | 2018-12-22 11:21:16 +0800 |
commit | 3fb9b31eb54d76ebac7cd39158e572ce37934a38 (patch) | |
tree | b03a7966fd285d7fe60b49e6b869a1f27badce6c /mail | |
parent | 95fe6ab2735d8f4d20de3ad05e7d6c8d990bba5a (diff) | |
download | freebsd-ports-gnome-3fb9b31eb54d76ebac7cd39158e572ce37934a38.tar.gz freebsd-ports-gnome-3fb9b31eb54d76ebac7cd39158e572ce37934a38.tar.zst freebsd-ports-gnome-3fb9b31eb54d76ebac7cd39158e572ce37934a38.zip |
- Unbreak on 12+ with SSL_DEFAULT=libressl[-devel]
Submitted by: gahr
Diffstat (limited to 'mail')
-rw-r--r-- | mail/opensmtpd-devel/Makefile | 6 | ||||
-rw-r--r-- | mail/opensmtpd/Makefile | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/mail/opensmtpd-devel/Makefile b/mail/opensmtpd-devel/Makefile index 66a21341bd69..197de18fd8d8 100644 --- a/mail/opensmtpd-devel/Makefile +++ b/mail/opensmtpd-devel/Makefile @@ -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: diff --git a/mail/opensmtpd/Makefile b/mail/opensmtpd/Makefile index dcdc3c793379..e7263cff8f4c 100644 --- a/mail/opensmtpd/Makefile +++ b/mail/opensmtpd/Makefile @@ -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 |