diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-04 08:14:16 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-04 08:14:16 +0000 |
commit | 179e47514b1ca674919118f58ae67c4fd45998cd (patch) | |
tree | 3d616c33e4b7cd9bba5039ae78214b826318cba1 | |
parent | 64caaa955e58116a027ae0d2c4b7cde18b454ae3 (diff) |
MFH: r497807
Mark BROKEN on FreeBSD 12 and 13
Reported by: pkg-fallout
Notes
Notes:
svn path=/branches/2019Q2/; revision=497808
-rw-r--r-- | net-p2p/linuxdcpp/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net-p2p/linuxdcpp/Makefile b/net-p2p/linuxdcpp/Makefile index 9fa7ed539d95..615effdbcd4f 100644 --- a/net-p2p/linuxdcpp/Makefile +++ b/net-p2p/linuxdcpp/Makefile @@ -32,6 +32,13 @@ LDFLAGS+= -L${LOCALBASE}/lib NOTIFY_LIB_DEPENDS= libnotify.so:devel/libnotify NOTIFY_MAKE_ARGS_OFF= libnotify=0 +.include <bsd.port.pre.mk> + +.if ${SSL_DEFAULT} == base +BROKEN_FreeBSD_12= member access into incomplete type 'dh_st' +BROKEN_FreeBSD_13= member access into incomplete type 'dh_st' +.endif + post-patch: @${REINPLACE_CMD} -e "s/'iconv'/'${ICONV_LIB:S/-l//}'/" \ ${WRKSRC}/SConstruct @@ -40,4 +47,4 @@ post-patch: post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |