diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2018-03-18 14:40:44 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2018-03-18 14:40:44 +0000 |
commit | 213715333d547287b053e7800c7bf8559d8d7992 (patch) | |
tree | e9229e9cc7b55b362501c13b4df08f5032472f3e /games/crafty | |
parent | dd7aca9d8be0c5efa992b3da102161895e772736 (diff) |
Notes
Diffstat (limited to 'games/crafty')
-rw-r--r-- | games/crafty/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games/crafty/Makefile b/games/crafty/Makefile index 6d2dd812aca0..cb6f0288cafa 100644 --- a/games/crafty/Makefile +++ b/games/crafty/Makefile @@ -16,6 +16,9 @@ EXTRACT_ONLY= crafty-${PORTVERSION}.zip MAINTAINER= johans@FreeBSD.org COMMENT= Chess program for playing and analyzing games +BROKEN_armv6= fails to compile: invokes x86 assembler +BROKEN_armv7= fails to compile: invokes x86 assembler + WRKSRC= ${WRKDIR} USES= gmake zip @@ -36,7 +39,7 @@ OPT= -DHASHSTATS -DTRACE -DBOOKDIR=\\\"${WITH_BOOKDIR}\\\" \ .include <bsd.port.pre.mk> -.if ${ARCH} == "i386" || ${ARCH} == "amd64" +.if ${ARCH} == amd64 || ${ARCH} == i386 OPT+= -DCPUS=4 .else OPT+= -DCPUS=1 # disables x86 assembler |