svn commit: r330658 - head/audio/audacity

Danilo Egea Gondolfo danilo at FreeBSD.org
Thu Oct 17 17:14:25 UTC 2013


Author: danilo
Date: Thu Oct 17 17:14:24 2013
New Revision: 330658
URL: http://svnweb.freebsd.org/changeset/ports/330658

Log:
  - Disable SSE if arch != amd64
  
  Reported by:	tijl

Modified:
  head/audio/audacity/Makefile

Modified: head/audio/audacity/Makefile
==============================================================================
--- head/audio/audacity/Makefile	Thu Oct 17 17:13:37 2013	(r330657)
+++ head/audio/audacity/Makefile	Thu Oct 17 17:14:24 2013	(r330658)
@@ -101,7 +101,7 @@ VORBIS_LIB_DEPENDS=	libvorbis.so:${PORTS
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == "i386" || ${ARCH} == "powerpc"
+.if ${ARCH} != "amd64"
 SSE_CFLAGS=	-mno-sse -mno-sse2
 .endif
 


More information about the svn-ports-all mailing list