diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2017-01-19 08:53:28 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-01-25 16:00:01 +0100 |
commit | cde2d5367a4b0b7944dca826a0e66fd0b47f7ef1 (patch) | |
tree | c13d5e7c315403928d530013ae95c3c00f9dd696 /meta-oe | |
parent | cab0c78565ab2620d33f45851ad9275a335684ea (diff) | |
download | meta-openembedded-cde2d5367a4b0b7944dca826a0e66fd0b47f7ef1.tar.gz |
libopus: add --enable-custom-modes to EXTRA_OECONF
* this is what jack is looking for
* while we are here do some polishing
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-multimedia/libopus/libopus_1.1.3.bb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/meta-oe/recipes-multimedia/libopus/libopus_1.1.3.bb b/meta-oe/recipes-multimedia/libopus/libopus_1.1.3.bb index b5eef8244..a24f5e30b 100644 --- a/meta-oe/recipes-multimedia/libopus/libopus_1.1.3.bb +++ b/meta-oe/recipes-multimedia/libopus/libopus_1.1.3.bb | |||
@@ -20,11 +20,13 @@ PACKAGECONFIG ??= "" | |||
20 | PACKAGECONFIG[fixed-point] = "--enable-fixed-point,," | 20 | PACKAGECONFIG[fixed-point] = "--enable-fixed-point,," |
21 | PACKAGECONFIG[float-approx] = "--enable-float-approx,," | 21 | PACKAGECONFIG[float-approx] = "--enable-float-approx,," |
22 | 22 | ||
23 | EXTRA_OECONF = "--with-NE10-includes=${STAGING_DIR_TARGET}${includedir} \ | 23 | EXTRA_OECONF = " \ |
24 | --with-NE10-libraries=${STAGING_DIR_TARGET}${libdir} \ | 24 | --with-NE10-includes=${STAGING_DIR_TARGET}${includedir} \ |
25 | --enable-asm \ | 25 | --with-NE10-libraries=${STAGING_DIR_TARGET}${libdir} \ |
26 | --enable-intrinsics \ | 26 | --enable-asm \ |
27 | " | 27 | --enable-intrinsics \ |
28 | --enable-custom-modes \ | ||
29 | " | ||
28 | 30 | ||
29 | python () { | 31 | python () { |
30 | if d.getVar('TARGET_FPU') in [ 'soft' ]: | 32 | if d.getVar('TARGET_FPU') in [ 'soft' ]: |