diff options
author | linimon <linimon@FreeBSD.org> | 2009-03-16 17:06:02 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2009-03-16 17:06:02 +0800 |
commit | 6ea5de973e769917faf85b9e23108caac9b90d77 (patch) | |
tree | 4dcfc8f84c4b3a52a2f169d700f08718bc0b2e79 /audio/lmms | |
parent | 50e50c3721a5f2ca8abf3cf6ba11642329712eed (diff) | |
download | freebsd-ports-gnome-6ea5de973e769917faf85b9e23108caac9b90d77.tar.gz freebsd-ports-gnome-6ea5de973e769917faf85b9e23108caac9b90d77.tar.zst freebsd-ports-gnome-6ea5de973e769917faf85b9e23108caac9b90d77.zip |
Fails to compile on sparc64 as well as amd64.
Diffstat (limited to 'audio/lmms')
-rw-r--r-- | audio/lmms/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/audio/lmms/Makefile b/audio/lmms/Makefile index 17eec0544230..7054e677300f 100644 --- a/audio/lmms/Makefile +++ b/audio/lmms/Makefile @@ -56,8 +56,10 @@ post-install: .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 700042 && ${ARCH} == "amd64" -BROKEN= does not compile +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif .endif .include <bsd.port.post.mk> |