diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-04 15:15:19 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-04 15:15:19 +0000 |
commit | 831a12899f85f5e03f45593c52990906291b4571 (patch) | |
tree | e8c95793449a2cbb8be2d8263a33a94cde3ec52c | |
parent | Mark BROKEN on FreeBSD 12 and 13 (diff) |
Mark BROKEN on FreeBSD 12 and 13
Reported by: pkg-fallout
MFH: 2019Q2
Notes
Notes:
svn path=/head/; revision=497844
-rw-r--r-- | net/libarms/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net/libarms/Makefile b/net/libarms/Makefile index d012e809648c..e4fa2ae594eb 100644 --- a/net/libarms/Makefile +++ b/net/libarms/Makefile @@ -20,8 +20,15 @@ USE_LDCONFIG= yes LDFLAGS+= -L${LOCALBASE}/lib CPPFLAGS+= -I${LOCALBASE}/include +.include <bsd.port.pre.mk> + +.if ${SSL_DEFAULT} == base +BROKEN_FreeBSD_12= incomplete definition of type 'struct x509_store_ctx_st' +BROKEN_FreeBSD_13= incomplete definition of type 'struct x509_store_ctx_st' +.endif + post-configure: @${REINPLACE_CMD} 's|$${datarootdir}/doc/$${PACKAGE_TARNAME}|${DOCSDIR}|' \ ${WRKSRC}/Makefile -.include <bsd.port.mk> +.include <bsd.port.post.mk> |