diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-09-30 18:17:17 +0800 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-09-30 18:17:17 +0800 |
commit | 4b29a266c3b3b3f0102e7bb2e108df7faa0fe74f (patch) | |
tree | 0e5780d678d8593e00c1c5baac52a1c19c0a4484 /sysutils | |
parent | 1bd1d8fef110f5bfab3b962211d94c3a02a04708 (diff) | |
download | freebsd-ports-gnome-4b29a266c3b3b3f0102e7bb2e108df7faa0fe74f.tar.gz freebsd-ports-gnome-4b29a266c3b3b3f0102e7bb2e108df7faa0fe74f.tar.zst freebsd-ports-gnome-4b29a266c3b3b3f0102e7bb2e108df7faa0fe74f.zip |
Mark as broken with gcc4.2.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/perf/Makefile | 8 | ||||
-rw-r--r-- | sysutils/upsdaemon/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/sysutils/perf/Makefile b/sysutils/perf/Makefile index f95a9565e141..a6376b3a8442 100644 --- a/sysutils/perf/Makefile +++ b/sysutils/perf/Makefile @@ -26,4 +26,10 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/perf.1 ${PREFIX}/man/man1 ${GZIP_CMD} ${PREFIX}/man/man1/perf.1 -.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/sysutils/upsdaemon/Makefile b/sysutils/upsdaemon/Makefile index 010069b68d6c..3e003a7c983b 100644 --- a/sysutils/upsdaemon/Makefile +++ b/sysutils/upsdaemon/Makefile @@ -22,4 +22,10 @@ USE_RC_SUBR= upsdaemon post-install: @${CAT} ${PKGMESSAGE} -.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> |