diff options
author | kris <kris@FreeBSD.org> | 2007-05-26 20:38:49 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2007-05-26 20:38:49 +0000 |
commit | 49eee82af863d42175907892f42be544e3a3ae64 (patch) | |
tree | 171523fccbb3f3713f52c39c0663b6c6c8cae5c6 /games | |
parent | 9b5e5e76c02e2d75cbc1e07889ace8ec79a231a2 (diff) | |
download | FreeBSD-ports-49eee82af863d42175907892f42be544e3a3ae64.zip FreeBSD-ports-49eee82af863d42175907892f42be544e3a3ae64.tar.gz |
BROKEN with gcc 4.2
Diffstat (limited to 'games')
-rw-r--r-- | games/aqbubble/Makefile | 4 | ||||
-rw-r--r-- | games/atr3d/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/games/aqbubble/Makefile b/games/aqbubble/Makefile index 7eda0c1..20b4c7f 100644 --- a/games/aqbubble/Makefile +++ b/games/aqbubble/Makefile @@ -29,6 +29,10 @@ OPTIONS= NLS "Native Language Support" on .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + .if defined(WITHOUT_NLS) CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " diff --git a/games/atr3d/Makefile b/games/atr3d/Makefile index b64915a..f7ad993 100644 --- a/games/atr3d/Makefile +++ b/games/atr3d/Makefile @@ -38,6 +38,12 @@ USE_AUTOTOOLS= automake:19 autoconf:259 CPPFLAGS= -I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS} LDFLAGS= -L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + pre-patch: @${PERL} -pi.orig -e 's|^aclocal|${ACLOCAL}|; \ s|^autoconf|${AUTOCONF}|; s|^automake|${AUTOMAKE}|' \ @@ -55,4 +61,4 @@ post-configure: 's|-lpthread|${PTHREAD_LIBS}|g' \ ${WRKSRC}/Makefile -.include <bsd.port.mk> +.include <bsd.port.post.mk> |