diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-09-27 22:58:52 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-09-27 22:58:52 +0000 |
commit | 921ae16012bdbba96022049da2e306b46ab31dd0 (patch) | |
tree | 203885796aa40b100cc9b46161533f4cb0d3992f | |
parent | c26836118a189fc18d668981582273d2a9d1771f (diff) |
Notes
-rw-r--r-- | devel/dparser/Makefile | 4 | ||||
-rw-r--r-- | japanese/migemo/Makefile | 4 | ||||
-rw-r--r-- | lang/chicken/Makefile | 4 | ||||
-rw-r--r-- | palm/uppc-kmod/Makefile | 4 |
4 files changed, 6 insertions, 10 deletions
diff --git a/devel/dparser/Makefile b/devel/dparser/Makefile index d06ef746f8bd..8168e78fdf47 100644 --- a/devel/dparser/Makefile +++ b/devel/dparser/Makefile @@ -37,8 +37,8 @@ LIBDPARSE= libdparse.a .include <bsd.port.pre.mk> -.if ${ARCH} != "i386" -BROKEN= "Does not compile on !i386" +.if ${ARCH} != "i386" && ${ARCH} != "amd64" +BROKEN= "Does not compile on !i386 and !amd64" .endif do-install: diff --git a/japanese/migemo/Makefile b/japanese/migemo/Makefile index 2d3890b573a5..d73e9b1ed97b 100644 --- a/japanese/migemo/Makefile +++ b/japanese/migemo/Makefile @@ -31,8 +31,8 @@ CONFIGURE_ARGS+=--with-rubydir=${RUBY_SITELIBDIR} .include <bsd.port.pre.mk> -.if ${ARCH} != "i386" && ${ARCH} != "sparc64" -BROKEN= "Does not compile on !i386 and !sparc64" +.if ${ARCH} == "ia64" +BROKEN= "Does not compile on ia64" .endif post-install: diff --git a/lang/chicken/Makefile b/lang/chicken/Makefile index 954728aff853..395e22e787e1 100644 --- a/lang/chicken/Makefile +++ b/lang/chicken/Makefile @@ -29,8 +29,8 @@ OPTIONS= PCRE "With PCRE support" off .include <bsd.port.pre.mk> -.if ${ARCH} == "amd64" || ${ARCH} == "ia64" -BROKEN= "Coredump during build on amd64 and ia64" +.if ${ARCH} == "ia64" +BROKEN= "Coredump during build on ia64" .endif .if defined(WITH_PCRE) diff --git a/palm/uppc-kmod/Makefile b/palm/uppc-kmod/Makefile index 57bd9eaedc2f..55e07c55302c 100644 --- a/palm/uppc-kmod/Makefile +++ b/palm/uppc-kmod/Makefile @@ -18,10 +18,6 @@ MAN4= uppc.4 WRKSRC= ${WRKDIR}/${PORTNAME} USE_REINPLACE= yes -.if ${MACHINE_ARCH:L} == "amd64" -BROKEN= "kernel modules are not available on this platform yet" -.endif - .if !exists(/usr/src/sys/dev/usb/usb.h) IGNORE= "Requires kernel source (/usr/src/sys) to build" .endif |