- Unbreak on 12+ with SSL_DEFAULT=libressl[-devel]

Submitted by:	gahr
This commit is contained in:
Dima Panov 2018-12-22 03:21:16 +00:00
parent 2570d378ae
commit e834d6e9a9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=488057
2 changed files with 7 additions and 3 deletions

View File

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

View File

@ -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