diff options
author | antoine <antoine@FreeBSD.org> | 2019-04-03 16:51:47 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2019-04-03 16:51:47 +0800 |
commit | 7a193907c129cdefdc3f37c4846a8489fc308232 (patch) | |
tree | 0b5bb09cc1b996350c87732e42de4e85cac648fc | |
parent | e0fc9f2eceabcc2c018a3f4cd065e70d86ae6d11 (diff) | |
download | freebsd-ports-gnome-7a193907c129cdefdc3f37c4846a8489fc308232.tar.gz freebsd-ports-gnome-7a193907c129cdefdc3f37c4846a8489fc308232.tar.zst freebsd-ports-gnome-7a193907c129cdefdc3f37c4846a8489fc308232.zip |
Mark BROKEN on FreeBSD 12 and 13
Reported by: pkg-fallout
MFH: 2019Q2
-rw-r--r-- | benchmarks/httperf/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/benchmarks/httperf/Makefile b/benchmarks/httperf/Makefile index cf2d111b1404..d226a4121a00 100644 --- a/benchmarks/httperf/Makefile +++ b/benchmarks/httperf/Makefile @@ -23,6 +23,13 @@ PORTDOCS= ChangeLog NEWS README TODO OPTIONS_DEFINE= DOCS +.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 + do-install: ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1 @@ -32,4 +39,4 @@ do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |