diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-02 17:35:48 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-02 17:35:48 +0800 |
commit | 346b8cf1bf68fda2ae6527c229212a7b8240d9e9 (patch) | |
tree | ab3376afc1737796a9edb8489758a5193c19fb33 | |
parent | e3233ec55c2c53b14da2bda742487a3b906def3e (diff) | |
download | freebsd-ports-gnome-346b8cf1bf68fda2ae6527c229212a7b8240d9e9.tar.gz freebsd-ports-gnome-346b8cf1bf68fda2ae6527c229212a7b8240d9e9.tar.zst freebsd-ports-gnome-346b8cf1bf68fda2ae6527c229212a7b8240d9e9.zip |
Mark as broken with gcc4.2, at least on sparc64. It may also be broken
on the others.
-rw-r--r-- | audio/bmp-flac/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/audio/bmp-flac/Makefile b/audio/bmp-flac/Makefile index 69824a11ecd6..b2e1e909053e 100644 --- a/audio/bmp-flac/Makefile +++ b/audio/bmp-flac/Makefile @@ -38,4 +38,12 @@ post-configure: do-install: ${INSTALL_DATA} ${WRKSRC}/src/plugin_bmp/.libs/libbmp-flac.so ${PREFIX}/lib/bmp/Input -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif +.endif + +.include <bsd.port.post.mk> |