diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-10-02 18:15:40 +0800 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-10-02 18:15:40 +0800 |
commit | 18b25c14ed10e314076f8de9424448671636b2d6 (patch) | |
tree | 225901301ed4e779493558c50445c8e132884783 | |
parent | 460fcc786729dc7ef36086cf5a9b64bcd09cd029 (diff) | |
download | freebsd-ports-gnome-18b25c14ed10e314076f8de9424448671636b2d6.tar.gz freebsd-ports-gnome-18b25c14ed10e314076f8de9424448671636b2d6.tar.zst freebsd-ports-gnome-18b25c14ed10e314076f8de9424448671636b2d6.zip |
Mark as broken with gcc4.2 on 64-bit archs.
-rw-r--r-- | games/ivan/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/games/ivan/Makefile b/games/ivan/Makefile index 0250fb2c7a09..de2e5a36549b 100644 --- a/games/ivan/Makefile +++ b/games/ivan/Makefile @@ -42,4 +42,12 @@ post-install: ${CHMOD} -R g+w ${STATEDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif +.endif + +.include <bsd.port.post.mk> |