diff options
author | kris <kris@FreeBSD.org> | 2004-11-19 06:20:31 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-11-19 06:20:31 +0800 |
commit | c57fe4515ae62330155dc77f2f0445f28605e64b (patch) | |
tree | 1c170e019168ecc1e49f5e2559185cd2bd56a53c | |
parent | 3ca0e7f071165cee42f0e4b97b2d25ba54270217 (diff) | |
download | freebsd-ports-graphics-c57fe4515ae62330155dc77f2f0445f28605e64b.tar.gz freebsd-ports-graphics-c57fe4515ae62330155dc77f2f0445f28605e64b.tar.zst freebsd-ports-graphics-c57fe4515ae62330155dc77f2f0445f28605e64b.zip |
BROKEN on ia64: Does not build
-rw-r--r-- | editors/flim113/Makefile | 4 | ||||
-rw-r--r-- | irc/anope/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/editors/flim113/Makefile b/editors/flim113/Makefile index 4a923f99de9..c50fa074170 100644 --- a/editors/flim113/Makefile +++ b/editors/flim113/Makefile @@ -56,6 +56,10 @@ MAKE_ARGS+= PREFIX="${LOCALBASE}" \ .include <bsd.port.pre.mk> +.if ${ARCH} == "ia64" +BROKEN= "Does not build on ia64" +.endif + .if defined(EMACS_PORT_NAME) # depends on apel (case of xemacs-21.x or later) .if defined(EMACS_PACKAGESDIR) diff --git a/irc/anope/Makefile b/irc/anope/Makefile index 802fefa0b86..55b818506b5 100644 --- a/irc/anope/Makefile +++ b/irc/anope/Makefile @@ -53,6 +53,10 @@ ANOPEUMASK?= 077 BROKEN= "Does not build on amd64 (shared libraries must be compiled with -fPIC)" .endif +.if ${ARCH} == "ia64" +BROKEN= "Does not build on ia64" +.endif + .if defined(WITH_MYSQL) USE_MYSQL= yes .endif |