opus: bump version.

* disable intrinsics for x86_gcc2.
This commit is contained in:
Jerome Duval
2016-07-20 17:28:12 +00:00
parent 84d3051d57
commit 781aadeb90
2 changed files with 6 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ COPYRIGHT="2001-2014 Xiph.org"
LICENSE="BSD (3-clause)"
REVISION="1"
SOURCE_URI="http://downloads.xiph.org/releases/opus/opus-$portVersion.tar.gz"
CHECKSUM_SHA256="0e290078e31211baa7b5886bcc8ab6bc048b9fc83882532da4a1a45e58e907fd"
CHECKSUM_SHA256="58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633"
PATCHES="opus-$portVersion.patchset"
ARCHITECTURES="x86_gcc2 x86 x86_64"
@@ -64,7 +64,11 @@ BUILD_PREREQUIRES="
BUILD()
{
runConfigure ./configure
local configureFlags
if [ $effectiveTargetArchitecture = "x86_gcc2" ]; then
configureFlags=--disable-intrinsics
fi
runConfigure ./configure $configureFlags
make
}