diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-11 16:04:18 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-11 16:04:18 +0000 |
commit | 3c063e4271b00f4633120cc1403e543cf0654385 (patch) | |
tree | 6cb9e55aae6c48b22cb71a04b46a9813a02a007b /main/speexdsp | |
parent | 792826271e168882527e54922bb86781a7de06d1 (diff) | |
download | aports-3c063e4271b00f4633120cc1403e543cf0654385.tar.bz2 aports-3c063e4271b00f4633120cc1403e543cf0654385.tar.xz |
main/speexdsp: build fix on aarch64
Diffstat (limited to 'main/speexdsp')
-rw-r--r-- | main/speexdsp/APKBUILD | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/speexdsp/APKBUILD b/main/speexdsp/APKBUILD index 7f24e91837..d7aaa44770 100644 --- a/main/speexdsp/APKBUILD +++ b/main/speexdsp/APKBUILD @@ -29,6 +29,7 @@ prepare() { build() { cd "$_builddir" + [ "$CARCH" = "aarch64" ] && _neon="--disable-neon" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -37,6 +38,7 @@ build() { --mandir=/usr/share/man \ --infodir=/usr/share/info \ --disable-static \ + $_neon \ || return 1 make || return 1 } |