diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-09-29 08:42:12 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-09-29 08:42:12 +0000 |
commit | 8f964dc43b27d6309a2dddbaafedfab422846967 (patch) | |
tree | 461603910c6ab5da53ec6eab81d48f29b3dfedf3 /graphics/libemf | |
parent | 4a286feb91ddfefd908edf317b9067a896599d8f (diff) |
Mark broken on gcc4.2 for 64-bit archs.
Notes
Notes:
svn path=/head/; revision=200329
Diffstat (limited to 'graphics/libemf')
-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} |