svn commit: r395219 - head/games/openbor

Jan Beich jbeich at FreeBSD.org
Tue Aug 25 07:10:32 UTC 2015


Author: jbeich
Date: Tue Aug 25 07:10:32 2015
New Revision: 395219
URL: https://svnweb.freebsd.org/changeset/ports/395219

Log:
  games/openbor: unbreak on non-x86 architectures
  
  ib/2xSaI.c -o source/gfxlib/2xSaI.o
  source/gfxlib/2xSaI.c:50:11: error: invalid output constraint '=d' in asm
          : "=d"(retval)
            ^
  1 error generated.
  
  Reported by:	pkg-fallout (armv6)

Modified:
  head/games/openbor/Makefile   (contents, props changed)

Modified: head/games/openbor/Makefile
==============================================================================
--- head/games/openbor/Makefile	Tue Aug 25 07:10:17 2015	(r395218)
+++ head/games/openbor/Makefile	Tue Aug 25 07:10:32 2015	(r395219)
@@ -40,6 +40,8 @@ DESKTOP_ENTRIES="OpenBOR" \
 
 .if ${ARCH} == i386
 BUILD_DEPENDS+=	yasm:${PORTSDIR}/devel/yasm
+.else
+MAKE_ARGS+=	BUILD_MMX=""
 .endif
 
 #


More information about the svn-ports-head mailing list