diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-04 08:09:26 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2019-04-04 08:09:26 +0000 |
commit | cdaa1ce67ab0fce3e0092fe9dd7774929eb143b0 (patch) | |
tree | f836018fb1e5fa1e5e33c409e569fd50fbe12851 | |
parent | Update to 0.4.10 release and unbreak with libressl. (diff) |
Mark BROKEN on FreeBSD 12 and 13
Reported by: pkg-fallout
MFH: 2019Q2
-rw-r--r-- | polish/ekg/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/polish/ekg/Makefile b/polish/ekg/Makefile index eaa9199d7744..a7c57745d5b1 100644 --- a/polish/ekg/Makefile +++ b/polish/ekg/Makefile @@ -36,7 +36,14 @@ ASPELL_RUN_DEPENDS= pl-aspell>0:polish/aspell OPENSSL_USES= ssl OPENSSL_CONFIGURE_OFF= --without-openssl +.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-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ekg -.include <bsd.port.mk> +.include <bsd.port.post.mk> |