svn commit: r401056 - head/audio/speexdsp

Andrew Turner andrew at FreeBSD.org
Sun Nov 8 12:05:28 UTC 2015


Author: andrew (src committer)
Date: Sun Nov  8 12:05:26 2015
New Revision: 401056
URL: https://svnweb.freebsd.org/changeset/ports/401056

Log:
  Disable NEON on AArch64, the code is written for 32-bit ARM so fails to
  compile.
  
  Approved by:	tijl
  Differential Revision:	https://reviews.freebsd.org/D4105

Modified:
  head/audio/speexdsp/Makefile

Modified: head/audio/speexdsp/Makefile
==============================================================================
--- head/audio/speexdsp/Makefile	Sun Nov  8 12:03:53 2015	(r401055)
+++ head/audio/speexdsp/Makefile	Sun Nov  8 12:05:26 2015	(r401056)
@@ -14,4 +14,10 @@ INSTALL_TARGET=	install-strip
 USES=		libtool pathfix
 USE_LDCONFIG=	yes
 
+.include <bsd.port.options.mk>
+
+.if ${ARCH} == "aarch64"
+CONFIGURE_ARGS+=--disable-neon
+.endif
+
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list