diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-04 06:12:30 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-04 06:12:30 +0000 |
commit | 83f94c6078501f0e6424a36a6c19fe035e20b3ee (patch) | |
tree | 48eadcacbadfb8039e832942b08e9c2630b882f7 | |
parent | Mark BROKEN on FreeBSD 12 and 13 (diff) |
Mark BROKEN on FreeBSD 12 and 13
Reported by: pkg-fallout
MFH: 2019Q2
-rw-r--r-- | security/pvk/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/security/pvk/Makefile b/security/pvk/Makefile index d3c89da676fb..774eefa4cf3b 100644 --- a/security/pvk/Makefile +++ b/security/pvk/Makefile @@ -17,6 +17,13 @@ LDFLAGS+= -L${OPENSSLLIB} NO_WRKSUBDIR= yes +.include <bsd.port.pre.mk> + +.if ${SSL_DEFAULT} == base +BROKEN_FreeBSD_12= variable has incomplete type 'EVP_MD_CTX' (aka 'struct evp_md_ctx_st') +BROKEN_FreeBSD_13= variable has incomplete type 'EVP_MD_CTX' (aka 'struct evp_md_ctx_st') +.endif + post-patch: ${REINPLACE_CMD} -e 's|\(-lcrypto\)|$$(LDFLAGS) \1|g' \ ${WRKSRC}/Makefile @@ -26,4 +33,4 @@ do-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |