diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-02 10:37:26 +0000 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-02 10:37:26 +0000 |
commit | 529fa51ab571bf72b4931872a7993e2f6c7cde0c (patch) | |
tree | 6f6ae39c2b65e15b7a91426e94db845a43955ce2 /games | |
parent | 026d6e64ac46f39403cca1bb49320827f78ecd55 (diff) | |
download | FreeBSD-ports-529fa51ab571bf72b4931872a7993e2f6c7cde0c.zip FreeBSD-ports-529fa51ab571bf72b4931872a7993e2f6c7cde0c.tar.gz |
Mark as broken with gcc4.2 on 64-bit archs. While here, remove
obsolete cruft.
Diffstat (limited to 'games')
-rw-r--r-- | games/einstein/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/games/einstein/Makefile b/games/einstein/Makefile index 1481c96..52164a1 100644 --- a/games/einstein/Makefile +++ b/games/einstein/Makefile @@ -20,8 +20,10 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} .include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 -IGNORE= Einstein requires wstrings which are not available in FreeBSD 4.x +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif .endif post-install: |