Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Nov 2015 12:05:27 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r401056 - head/audio/speexdsp
Message-ID:  <201511081205.tA8C5RDe046327@repo.freebsd.org>

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



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