diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-05-18 12:18:54 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-05-18 12:18:54 +0000 |
commit | 5962582d7269a6c9cdfcb155f39c3338c9f1961d (patch) | |
tree | aad243acad70f04a59b2eec25418f838e73f8da7 /lang | |
parent | BROKEN on 5.1: Segfault during install (diff) |
BROKEN on 5.1: does not compile
Notes
Notes:
svn path=/head/; revision=81231
Diffstat (limited to 'lang')
-rw-r--r-- | lang/egcs/Makefile | 4 | ||||
-rw-r--r-- | lang/objc/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lang/egcs/Makefile b/lang/egcs/Makefile index e7bd8820c007..50d2cc95e8aa 100644 --- a/lang/egcs/Makefile +++ b/lang/egcs/Makefile @@ -22,6 +22,10 @@ USE_BZIP2= yes .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + EGCS_REV= egcs-2.91.66 .if ${PORTOBJFORMAT} == "elf" diff --git a/lang/objc/Makefile b/lang/objc/Makefile index 8d26949aca2c..8538c1fd7728 100644 --- a/lang/objc/Makefile +++ b/lang/objc/Makefile @@ -23,6 +23,10 @@ CONFIGURE_ARGS= --prefix=$(PREFIX) .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile" +.endif + pre-configure: cd $(WRKDIR)/${PORTNAME}-bootstrap-$(PORTVERSION);\ ./configure --prefix=$(WRKDIR);${MAKE};${MAKE} install |