svn commit: r540699 - head/audio/zynaddsubfx

Piotr Kubaj pkubaj at FreeBSD.org
Sun Jun 28 10:29:47 UTC 2020


Author: pkubaj
Date: Sun Jun 28 10:29:47 2020
New Revision: 540699
URL: https://svnweb.freebsd.org/changeset/ports/540699

Log:
  audio/zynaddsubfx: fix build on non-x86
  
  Disable SSE everywhere but on amd64 and i386.
  
  PR:		241247
  Approved by:	hselasky (maintainer)

Modified:
  head/audio/zynaddsubfx/Makefile

Modified: head/audio/zynaddsubfx/Makefile
==============================================================================
--- head/audio/zynaddsubfx/Makefile	Sun Jun 28 10:16:30 2020	(r540698)
+++ head/audio/zynaddsubfx/Makefile	Sun Jun 28 10:29:47 2020	(r540699)
@@ -86,6 +86,8 @@ CMAKE_ARGS+=	-DZYN_EXAMPLESDIR:STRING=${EXAMPLESDIR}
 
 .if ${ARCH} == "i386" || ${ARCH} == "amd64"
 CFLAGS+=	-DASM_F2I_YES
+.else
+CMAKE_ARGS+=	-DSUPPORT_SSE:BOOL=OFF
 .endif
 
 post-patch:


More information about the svn-ports-all mailing list