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: rev_ivi_2015_02_04~9528 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0bf7876bf7f1539721f15c32cea2308915b89aa3;p=scm%2Fbb%2Ftizen-distro.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. (From OE-Core rev: e8f707f16a38d85535593a32efff6dcbf4ddb203) Signed-off-by: Fahad Arslan Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-multimedia/speex/speex-fpu.inc b/meta/recipes-multimedia/speex/speex-fpu.inc new file mode 100644 index 0000000..2571d32 --- /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 5de0169..9fd88a3 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)}"