diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-05-18 11:41:56 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-05-18 11:41:56 +0000 |
commit | 787cd838778261d69e4b1dd287b2ed727dc9b3a3 (patch) | |
tree | eb7726941b153d7eda01f052446d231f7b1fc11f /devel | |
parent | Fix build on 5.1 (remove port's conflicting definition of float_t) (diff) |
BROKEN on 5.1: bad C++
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libg++/Makefile | 8 | ||||
-rw-r--r-- | devel/prcs/Makefile | 4 |
2 files changed, 11 insertions, 1 deletions
diff --git a/devel/libg++/Makefile b/devel/libg++/Makefile index 0a98209697c9..07b83bfc2a11 100644 --- a/devel/libg++/Makefile +++ b/devel/libg++/Makefile @@ -23,10 +23,16 @@ PATCH_DIST_STRIP= -p1 MAINTAINER= ports@FreeBSD.org COMMENT= A libg++ container classes for EGCS and later versions of GCC +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL} PLIST_SUB= GCC28SUBDIR=${GCC28DIR} pre-configure: @${CP} -p ${FILESDIR}/Makefile.libg++ ${WRKSRC}/Makefile -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/devel/prcs/Makefile b/devel/prcs/Makefile index 334ec1a25fc4..91b615bc1448 100644 --- a/devel/prcs/Makefile +++ b/devel/prcs/Makefile @@ -22,6 +22,10 @@ MAN1= prcs.1 .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + .if exists(${LOCALBASE}/bin/emacs) PLIST_SUB+= EMACS='' .else |