From: Joe Slater Date: Wed, 7 Sep 2016 21:44:58 +0000 (-0700) Subject: libwebp: sepcify neon availability for arm X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~24327 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a563214caf6bd5b3a026ebe953f8c692ebd640a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git libwebp: sepcify neon availability for arm Defeat automatic neon detection. Signed-off-by: Joe Slater Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-multimedia/webp/libwebp_0.5.1.bb b/meta/recipes-multimedia/webp/libwebp_0.5.1.bb index 222bd56b8ab..b882db75b64 100644 --- a/meta/recipes-multimedia/webp/libwebp_0.5.1.bb +++ b/meta/recipes-multimedia/webp/libwebp_0.5.1.bb @@ -26,6 +26,11 @@ EXTRA_OECONF = " \ --enable-libwebpdemux \ --enable-threading \ " +# Do not trust configure to determine if neon is available. +# +EXTRA_OECONF_append_arm = " \ + ${@bb.utils.contains("TUNE_FEATURES","neon","--enable-neon","--disable-neon",d)} \ +" inherit autotools lib_package