diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2007-05-27 03:03:31 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2007-05-27 03:03:31 +0000 |
commit | b7ff7031ea6f07582ad920bef0ffd13ac1adcc44 (patch) | |
tree | fa95c4dec9e92efb4ff7df81d579129d7bc11807 /lang | |
parent | bd5f3dd41b37a452c489843e85d75cf94433bbc6 (diff) |
BROKEN with gcc 4.2
Notes
Notes:
svn path=/head/; revision=191950
Diffstat (limited to 'lang')
-rw-r--r-- | lang/klone/Makefile | 4 | ||||
-rw-r--r-- | lang/moscow_ml/Makefile | 8 | ||||
-rw-r--r-- | lang/njs/Makefile | 8 |
3 files changed, 18 insertions, 2 deletions
diff --git a/lang/klone/Makefile b/lang/klone/Makefile index bf3d7bdf6848..6e0575f0e0ad 100644 --- a/lang/klone/Makefile +++ b/lang/klone/Makefile @@ -23,6 +23,10 @@ WRKSRC= ${WRKDIR}/Klone BROKEN= Does not compile on sparc64 .endif +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + do-configure: @${SED} -e 's:%%PREFIX%%:${PREFIX}:' \ -e 's:%%CC%%:${CC}:' \ diff --git a/lang/moscow_ml/Makefile b/lang/moscow_ml/Makefile index 1b35ece5948a..f79ea488b2cc 100644 --- a/lang/moscow_ml/Makefile +++ b/lang/moscow_ml/Makefile @@ -30,6 +30,12 @@ MAKE_ENV+= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" DOCSDIR="${DOCSDIR}" \ PKGMESSAGE= ${WRKDIR}/pkgmessage +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + post-patch: ${FIND} ${WRKSRC} -name Makefile | ${XARGS} \ ${REINPLACE_CMD} -e "s,-O2,${CFLAGS} -I${LOCALBASE}/include," @@ -63,4 +69,4 @@ post-install: @${FIND} ${EXAMPLESDIR}/ -type f -exec ${CHMOD} ${SHAREMODE} {} \; @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/lang/njs/Makefile b/lang/njs/Makefile index e05e5796d645..83cade30eba0 100644 --- a/lang/njs/Makefile +++ b/lang/njs/Makefile @@ -28,6 +28,12 @@ PKGMESSAGE= ${WRKDIR}/pkg-message MAN1= js.1 jsdas.1 INFO= js +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + post-extract: @${RM} ${WRKSRC}/docs/js.info* @@ -41,4 +47,4 @@ post-install: @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |