diff options
author | linimon <linimon@FreeBSD.org> | 2018-08-24 14:24:30 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2018-08-24 14:24:30 +0800 |
commit | 0f1c8b656588dafed23a330d40b448dd3ce1e0b9 (patch) | |
tree | 8d8f4d32bf0978122b7313ac170279fc4dcb3881 /biology | |
parent | 63a1957cdaae0819f916c0548c710319a279af23 (diff) | |
download | freebsd-ports-gnome-0f1c8b656588dafed23a330d40b448dd3ce1e0b9.tar.gz freebsd-ports-gnome-0f1c8b656588dafed23a330d40b448dd3ce1e0b9.tar.zst freebsd-ports-gnome-0f1c8b656588dafed23a330d40b448dd3ce1e0b9.zip |
Mark as broken with clang6 after r473289.
Diffstat (limited to 'biology')
-rw-r--r-- | biology/libsbml/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/biology/libsbml/Makefile b/biology/libsbml/Makefile index fc52b61594d8..df83de9fe102 100644 --- a/biology/libsbml/Makefile +++ b/biology/libsbml/Makefile @@ -51,4 +51,12 @@ post-install-EXAMPLES-on: cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . \ ${STAGEDIR}${EXAMPLESDIR} '! -name *Makefile*' -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OPSYS} == FreeBSD +.if ( ${OSVERSION} >= 1101513 && ${OSVERSION} < 1200000 ) || ${OSVERSION} >= 1200060 +BROKEN= fails to compile with clang6 or later +.endif +.endif + +.include <bsd.port.post.mk> |