From: Fahad Arslan Date: Mon, 20 Jan 2014 10:38:20 +0000 (+0500) Subject: speex: configure in float or fixed mode based on TARGET_FPU X-Git-Tag: 2015-4~3925 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e8f707f16a38d85535593a32efff6dcbf4ddb203;p=openembedded-core.git speex: configure in float or fixed mode based on TARGET_FPU Decide float or fixed mode usage depending on whether hardware FPU is present or not. Signed-off-by: Fahad Arslan Signed-off-by: Saul Wold --- diff --git a/meta/recipes-multimedia/speex/speex-fpu.inc b/meta/recipes-multimedia/speex/speex-fpu.inc new file mode 100644 index 0000000000..2571d32484 --- /dev/null +++ b/meta/recipes-multimedia/speex/speex-fpu.inc @@ -0,0 +1,4 @@ +def get_speex_fpu_setting(bb, d): + if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]: + return "--enable-fixed-point --disable-float-api --disable-vbr" + return "" diff --git a/meta/recipes-multimedia/speex/speex_1.2rc1.bb b/meta/recipes-multimedia/speex/speex_1.2rc1.bb index 5de0169354..9fd88a39f3 100644 --- a/meta/recipes-multimedia/speex/speex_1.2rc1.bb +++ b/meta/recipes-multimedia/speex/speex_1.2rc1.bb @@ -19,5 +19,7 @@ PARALLEL_MAKE = "" inherit autotools pkgconfig lib_package EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} \ - --disable-float-api --disable-vbr \ --with-ogg-includes=${STAGING_INCDIR} --disable-oggtest" + +require speex-fpu.inc +EXTRA_OECONF += "${@get_speex_fpu_setting(bb, d)}"