diff options
author | Martin Matuska <mm@FreeBSD.org> | 2018-02-24 17:07:58 +0800 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2018-02-24 17:07:58 +0800 |
commit | 152c51cadccf91b3de7d6d742fb1fc2b5061dbac (patch) | |
tree | 86066abcc188d5d1639eea5ba3af16e8dcd3d30b /converters/wkhtmltopdf | |
parent | 630e8feb6d2bc62efc1fd07acb3703b8cb9de4b5 (diff) | |
download | freebsd-ports-gnome-152c51cadccf91b3de7d6d742fb1fc2b5061dbac.tar.gz freebsd-ports-gnome-152c51cadccf91b3de7d6d742fb1fc2b5061dbac.tar.zst freebsd-ports-gnome-152c51cadccf91b3de7d6d742fb1fc2b5061dbac.zip |
Mark wkhtmltopdf as broken for clang >= 6.0 until fixed
Diffstat (limited to 'converters/wkhtmltopdf')
-rw-r--r-- | converters/wkhtmltopdf/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/converters/wkhtmltopdf/Makefile b/converters/wkhtmltopdf/Makefile index 2d551e2ea799..f57ead285d50 100644 --- a/converters/wkhtmltopdf/Makefile +++ b/converters/wkhtmltopdf/Makefile @@ -86,4 +86,12 @@ post-install: ${STAGEDIR}${PREFIX}/bin/wkhtmltopdf \ ${STAGEDIR}${PREFIX}/lib/libwkhtmltox.so.0.12.4 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OPSYS} == FreeBSD +.if ${COMPILER_TYPE:Mclang} && ${COMPILER_VERSION} >= 60 +BROKEN= Does not build +.endif +.endif + +.include <bsd.port.post.mk> |