diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-01 08:19:09 +0000 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-01 08:19:09 +0000 |
commit | 9d97a11fa8a9acccca52dca3fc0e1d81926cb880 (patch) | |
tree | 915563300c9e6c6e14d3b6c660f96203aec8000f /net | |
parent | 543fed9a2fc454185157300c484daa5f67b33155 (diff) | |
download | FreeBSD-ports-9d97a11fa8a9acccca52dca3fc0e1d81926cb880.zip FreeBSD-ports-9d97a11fa8a9acccca52dca3fc0e1d81926cb880.tar.gz |
Mark as broken on gcc4.2.
Diffstat (limited to 'net')
-rw-r--r-- | net/ggsd/Makefile | 8 | ||||
-rw-r--r-- | net/gkrellmwireless/Makefile | 8 | ||||
-rw-r--r-- | net/gkrellmwireless2/Makefile | 8 |
3 files changed, 21 insertions, 3 deletions
diff --git a/net/ggsd/Makefile b/net/ggsd/Makefile index 8a62879..63b71e0 100644 --- a/net/ggsd/Makefile +++ b/net/ggsd/Makefile @@ -32,4 +32,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/example.scr ${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/net/gkrellmwireless/Makefile b/net/gkrellmwireless/Makefile index 66aba88..23ab829 100644 --- a/net/gkrellmwireless/Makefile +++ b/net/gkrellmwireless/Makefile @@ -24,4 +24,10 @@ USE_GNOME= imlib PLIST_FILES= libexec/gkrellm/plugins/wireless.so -.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/net/gkrellmwireless2/Makefile b/net/gkrellmwireless2/Makefile index 6f41c63..faeedfe 100644 --- a/net/gkrellmwireless2/Makefile +++ b/net/gkrellmwireless2/Makefile @@ -22,4 +22,10 @@ WRKSRC= ${WRKDIR}/gkrellmwireless USE_X_PREFIX= yes USE_GMAKE= yes -.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> |