From owner-svn-ports-all@freebsd.org Sun Nov 8 12:05:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 53402A29E2D; Sun, 8 Nov 2015 12:05:28 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E2911F2B; Sun, 8 Nov 2015 12:05:28 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tA8C5RGt046328; Sun, 8 Nov 2015 12:05:27 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tA8C5RDe046327; Sun, 8 Nov 2015 12:05:27 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201511081205.tA8C5RDe046327@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sun, 8 Nov 2015 12:05:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401056 - head/audio/speexdsp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Nov 2015 12:05:28 -0000 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 + +.if ${ARCH} == "aarch64" +CONFIGURE_ARGS+=--disable-neon +.endif + .include