diff options
author | pav <pav@FreeBSD.org> | 2007-11-24 04:05:34 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2007-11-24 04:05:34 +0800 |
commit | dd338190e6f6330e93be0a1ca1e0d89861bb7543 (patch) | |
tree | 8dec6c755c5b577536594edb0a3e36acafbb3b65 /games | |
parent | 222c6aa864b78b1e494dc8210501a89cda827153 (diff) | |
download | freebsd-ports-graphics-dd338190e6f6330e93be0a1ca1e0d89861bb7543.tar.gz freebsd-ports-graphics-dd338190e6f6330e93be0a1ca1e0d89861bb7543.tar.zst freebsd-ports-graphics-dd338190e6f6330e93be0a1ca1e0d89861bb7543.zip |
- Mark BROKEN on amd64 with gcc42
Reported by: pointyhat
Approved by: portmgr (hat)
Diffstat (limited to 'games')
-rw-r--r-- | games/atr3d/Makefile | 4 | ||||
-rw-r--r-- | games/battleball/Makefile | 4 | ||||
-rw-r--r-- | games/znibbles/Makefile | 8 |
3 files changed, 15 insertions, 1 deletions
diff --git a/games/atr3d/Makefile b/games/atr3d/Makefile index 750ec42c26b..99b640e8571 100644 --- a/games/atr3d/Makefile +++ b/games/atr3d/Makefile @@ -40,6 +40,10 @@ LDFLAGS= -L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS} .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 && ${ARCH} == amd64 +BROKEN= does not compile +.endif + pre-patch: @${PERL} -pi.orig -e 's|^aclocal|${ACLOCAL}|; \ s|^autoconf|${AUTOCONF}|; s|^automake|${AUTOMAKE}|' \ diff --git a/games/battleball/Makefile b/games/battleball/Makefile index 6b021f885bd..0cafde29490 100644 --- a/games/battleball/Makefile +++ b/games/battleball/Makefile @@ -32,6 +32,10 @@ PORTDOCS= CHANGELOG README .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 && ${ARCH} == "amd64" +BROKEN= Does not compile +.endif + .if ${ARCH} == "ia64" || ${ARCH} == "sparc64" BROKEN= Does not compile on ia64 or sparc64 .endif diff --git a/games/znibbles/Makefile b/games/znibbles/Makefile index 85c70c9fe69..122ae254b47 100644 --- a/games/znibbles/Makefile +++ b/games/znibbles/Makefile @@ -22,4 +22,10 @@ CONFIGURE_ARGS= --without-motif \ MAN6= nibbles.6 znibbles.6 gznibbles.6 znibblesX.6 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 && ${ARCH} == amd64 +BROKEN= does not compile +.endif + +.include <bsd.port.post.mk> |