diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-10-02 05:36:42 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-10-02 05:36:42 +0000 |
commit | 3b13ed569d85c125a52e8268632203e7e8051e5a (patch) | |
tree | e41a444ff55b32af776869a13d1aed9fb409962e | |
parent | Mark as broken with gcc4.2. While here, remove antique compatibilty cruft. (diff) |
Mark as broken with gcc4.2.
-rw-r--r-- | editors/richtext/Makefile | 8 | ||||
-rw-r--r-- | editors/zed/Makefile | 8 | ||||
-rw-r--r-- | editors/zoinks/Makefile | 8 | ||||
-rw-r--r-- | emulators/fmsx/Makefile | 4 |
4 files changed, 25 insertions, 3 deletions
diff --git a/editors/richtext/Makefile b/editors/richtext/Makefile index 33b53d28adec..35f1e2e168cc 100644 --- a/editors/richtext/Makefile +++ b/editors/richtext/Makefile @@ -30,4 +30,10 @@ post-configure: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/rt ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 +.endif + +.include <bsd.port.post.mk> diff --git a/editors/zed/Makefile b/editors/zed/Makefile index dbdaccb01021..59fa12b453bc 100644 --- a/editors/zed/Makefile +++ b/editors/zed/Makefile @@ -24,4 +24,10 @@ do-install: cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 +.endif + +.include <bsd.port.post.mk> diff --git a/editors/zoinks/Makefile b/editors/zoinks/Makefile index c9eab4638aa9..007afa77381b 100644 --- a/editors/zoinks/Makefile +++ b/editors/zoinks/Makefile @@ -41,4 +41,10 @@ pre-everything:: @${ECHO_MSG} "Use WITH_IMLIB=yes to enable these features." @${ECHO_MSG} "" -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 +.endif + +.include <bsd.port.post.mk> diff --git a/emulators/fmsx/Makefile b/emulators/fmsx/Makefile index cb70f945dac5..bf92f13f9a90 100644 --- a/emulators/fmsx/Makefile +++ b/emulators/fmsx/Makefile @@ -35,6 +35,10 @@ OPTIONS= BPP8 "With BPP8" Off \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 +.endif + post-patch: .ifdef(WITH_BPP32) || defined(PACKAGE_BUILDING) || defined(BATCH) ${REINPLACE_CMD} -e 's/%%BPP%%/BPP32/' ${WRKSRC}/Makefile |