diff options
author | kris <kris@FreeBSD.org> | 2003-05-18 11:48:21 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-05-18 11:48:21 +0000 |
commit | 847fff39451bfce3fc1971c4007073296f7221f2 (patch) | |
tree | 511f81ef4dac31ae22a43884c5fb3fc508ab3562 /lang | |
parent | 3ddaf469382eaedeb2ac17057914ea4839e31db6 (diff) | |
download | FreeBSD-ports-847fff39451bfce3fc1971c4007073296f7221f2.zip FreeBSD-ports-847fff39451bfce3fc1971c4007073296f7221f2.tar.gz |
BROKEN on 5.1: does not compile
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gcc30/Makefile | 4 | ||||
-rw-r--r-- | lang/moscow_ml/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lang/gcc30/Makefile b/lang/gcc30/Makefile index 6ac80a46..661db39 100644 --- a/lang/gcc30/Makefile +++ b/lang/gcc30/Makefile @@ -30,6 +30,10 @@ CONFIGURE_SCRIPT= ../${SRCDIR:C/${WRKDIR}//}/configure .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile" +.endif + .if ${PORTOBJFORMAT} == "elf" CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL} .else diff --git a/lang/moscow_ml/Makefile b/lang/moscow_ml/Makefile index e701cd5..e65cd73 100644 --- a/lang/moscow_ml/Makefile +++ b/lang/moscow_ml/Makefile @@ -18,6 +18,12 @@ COMMENT= Moscow ML, a lightweight implementation of Standard ML LIB_DEPENDS= gmp.6:${PORTSDIR}/math/libgmp4 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile" +.endif + MOSMLHOME= $(PREFIX)/moscow_ml ALL_TARGET= world MOSMLHOME=$(MOSMLHOME) @@ -39,4 +45,4 @@ post-install: if [ -f $${file} ]; then \ $(LN) -sf $${file} $(PREFIX)/bin; fi; done -.include <bsd.port.mk> +.include <bsd.port.post.mk> |