diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2010-04-01 05:16:19 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2010-04-01 05:16:19 +0000 |
commit | 686a04b74abcca3ca33bbecfc6929632e092e84a (patch) | |
tree | 3b8958b1bb3cc35feca131ed85cc953e08b14c9d /lang | |
parent | 08a2e61d8a80056b49456688a226da265e78733a (diff) |
Notes
Diffstat (limited to 'lang')
-rw-r--r-- | lang/libjit/Makefile | 6 | ||||
-rw-r--r-- | lang/pfe-devel/Makefile | 2 | ||||
-rw-r--r-- | lang/pfe/Makefile | 2 | ||||
-rw-r--r-- | lang/scm/Makefile | 4 |
4 files changed, 9 insertions, 5 deletions
diff --git a/lang/libjit/Makefile b/lang/libjit/Makefile index a13917409d6e..2eca719e3f7f 100644 --- a/lang/libjit/Makefile +++ b/lang/libjit/Makefile @@ -27,9 +27,9 @@ MAN3= libjit.3 .if ${ARCH} == "ia64" BROKEN= Segfault during build -.endif - -.if ${ARCH} == "sparc64" +.elif ${ARCH} == "powerpc" +BROKEN= Fails to compile: invokes i386 asm +.elif ${ARCH} == "sparc64" BROKEN= Fails to compile: internal gcc error .endif diff --git a/lang/pfe-devel/Makefile b/lang/pfe-devel/Makefile index a4d79892d5a4..47313873c98d 100644 --- a/lang/pfe-devel/Makefile +++ b/lang/pfe-devel/Makefile @@ -29,6 +29,8 @@ MAN1= pfe.1 .if ${ARCH} == "i386" && ${OSVERSION} < 700000 BROKEN= does not compile +.elif ${ARCH} == "powerpc" +BROKEN= does not compile .endif post-patch: diff --git a/lang/pfe/Makefile b/lang/pfe/Makefile index a4d79892d5a4..47313873c98d 100644 --- a/lang/pfe/Makefile +++ b/lang/pfe/Makefile @@ -29,6 +29,8 @@ MAN1= pfe.1 .if ${ARCH} == "i386" && ${OSVERSION} < 700000 BROKEN= does not compile +.elif ${ARCH} == "powerpc" +BROKEN= does not compile .endif post-patch: diff --git a/lang/scm/Makefile b/lang/scm/Makefile index b75f1b141ce1..56e51f31ee2f 100644 --- a/lang/scm/Makefile +++ b/lang/scm/Makefile @@ -44,8 +44,8 @@ SCM_MODULES= byte.so bytenumb.so crs.so differ.so edline.so gsubr.so \ .include <bsd.port.pre.mk> -.if ${ARCH} == "ia64" || ${ARCH} == "sparc64" -BROKEN= Does not compile on ${ARCH} +.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" +BROKEN= Does not compile on ia64, powerpc, or sparc64 .endif .if defined(WITH_X11) |