diff options
author | linimon <linimon@FreeBSD.org> | 2007-09-29 16:42:12 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-09-29 16:42:12 +0800 |
commit | df14198737e15b49b4dfd3637946ecc0c8f2777e (patch) | |
tree | effffb20b7ca5f88d648c8cee0b9053b2f5453f4 | |
parent | 92fbac2502c5b526ef596359ee517992cff151b1 (diff) | |
download | freebsd-ports-gnome-df14198737e15b49b4dfd3637946ecc0c8f2777e.tar.gz freebsd-ports-gnome-df14198737e15b49b4dfd3637946ecc0c8f2777e.tar.zst freebsd-ports-gnome-df14198737e15b49b4dfd3637946ecc0c8f2777e.zip |
Mark broken on gcc4.2 for 64-bit archs.
-rw-r--r-- | graphics/libemf/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/graphics/libemf/Makefile b/graphics/libemf/Makefile index e07cb0cb83b8..19420b50e148 100644 --- a/graphics/libemf/Makefile +++ b/graphics/libemf/Makefile @@ -18,6 +18,12 @@ GNU_CONFIGURE= yes .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif +.endif + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} |