Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Jun 2020 10:29:47 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r540699 - head/audio/zynaddsubfx
Message-ID:  <202006281029.05SATlND019765@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006281029.05SATlND019765>