Date: Sun, 18 Mar 2018 14:40:44 +0000 (UTC) From: Mark Linimon <linimon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464917 - head/games/crafty Message-ID: <201803181440.w2IEeivV005338@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: linimon Date: Sun Mar 18 14:40:44 2018 New Revision: 464917 URL: https://svnweb.freebsd.org/changeset/ports/464917 Log: Mark as broken on armvX. Apparently the attempt to defeat the x86 assembler is insufficient. While here, conform to newer style by unquoting and sorting ARCHs. Approved by: portmgr (tier-2 blanket) Modified: head/games/crafty/Makefile Modified: head/games/crafty/Makefile ============================================================================== --- head/games/crafty/Makefile Sun Mar 18 14:26:57 2018 (r464916) +++ head/games/crafty/Makefile Sun Mar 18 14:40:44 2018 (r464917) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803181440.w2IEeivV005338>