diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-03 08:54:03 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-03 08:54:03 +0000 |
commit | dc00bd6e564ce1c907eb9d553296edc67cbcd145 (patch) | |
tree | 3555fb1553ce13b74ecbf64c4cd30c07297fe9ee | |
parent | 1f8836436a8be9190e76e31c1cb114ebed4c860d (diff) |
Mark BROKEN on FreeBSD 12 and 13
Reported by: pkg-fallout
MFH: 2019Q2
Notes
Notes:
svn path=/head/; revision=497688
-rw-r--r-- | finance/openhbci/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/finance/openhbci/Makefile b/finance/openhbci/Makefile index 88ad7a1dab9a..d777e679536e 100644 --- a/finance/openhbci/Makefile +++ b/finance/openhbci/Makefile @@ -23,10 +23,17 @@ CONFIGURE_ARGS+=--with-openssl-includes=${OPENSSLINC} \ WRKSRC= ${WRKDIR}/${PORTNAME}-0.9.17 +.include <bsd.port.pre.mk> + +.if ${SSL_DEFAULT} == base +BROKEN_FreeBSD_12= error: incomplete definition of type 'struct ssl_cipher_st' +BROKEN_FreeBSD_13= error: incomplete definition of type 'struct ssl_cipher_st' +.endif + post-patch: @${REINPLACE_CMD} -e 's|-lstdc++||' \ ${WRKSRC}/configure \ ${WRKSRC}/src/openhbci/Makefile.in \ ${WRKSRC}/src/openhbci/core/Makefile.in -.include <bsd.port.mk> +.include <bsd.port.post.mk> |