svn commit: r360872 - head/games/crafty

Johan van Selst johans at FreeBSD.org
Sun Jul 6 10:27:27 UTC 2014


Author: johans
Date: Sun Jul  6 10:27:27 2014
New Revision: 360872
URL: http://svnweb.freebsd.org/changeset/ports/360872
QAT: https://qat.redports.org/buildarchive/r360872/

Log:
  Fix build on i386 by disabling broken assembly code
  (no functional changes)

Modified:
  head/games/crafty/Makefile

Modified: head/games/crafty/Makefile
==============================================================================
--- head/games/crafty/Makefile	Sun Jul  6 10:18:36 2014	(r360871)
+++ head/games/crafty/Makefile	Sun Jul  6 10:27:27 2014	(r360872)
@@ -45,7 +45,8 @@ BOOK_DESC=	Include (default) opening boo
 .include <bsd.port.pre.mk>
 
 .if ${ARCH} == "i386"
-OPT+=		-DINLINE32
+# The i386 assembly is currently broken - disable for this version
+#OPT+=		-DINLINE32
 .elif ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
 BROKEN=		Does not compile on ia64, powerpc, or sparc64
 .endif


More information about the svn-ports-all mailing list