diff options
author | Joe Slater <jslater@windriver.com> | 2016-09-07 14:44:58 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-09 11:53:36 +0100 |
commit | f6ff0379b7ca0b59111cf4c706b8021181a2cbe9 (patch) | |
tree | 619bf75a8ad4523a0dfd4a0b54ba8e69d55d03d0 /meta/recipes-multimedia/webp | |
parent | 4192e4bad5cb2765c2d1ba37c6a6a86ef12c20a8 (diff) | |
download | poky-f6ff0379b7ca0b59111cf4c706b8021181a2cbe9.tar.gz |
libwebp: sepcify neon availability for arm
Defeat automatic neon detection.
(From OE-Core rev: 1a563214caf6bd5b3a026ebe953f8c692ebd640a)
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/webp')
-rw-r--r-- | meta/recipes-multimedia/webp/libwebp_0.5.1.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/webp/libwebp_0.5.1.bb b/meta/recipes-multimedia/webp/libwebp_0.5.1.bb index 222bd56b8a..b882db75b6 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 = " \ | |||
26 | --enable-libwebpdemux \ | 26 | --enable-libwebpdemux \ |
27 | --enable-threading \ | 27 | --enable-threading \ |
28 | " | 28 | " |
29 | # Do not trust configure to determine if neon is available. | ||
30 | # | ||
31 | EXTRA_OECONF_append_arm = " \ | ||
32 | ${@bb.utils.contains("TUNE_FEATURES","neon","--enable-neon","--disable-neon",d)} \ | ||
33 | " | ||
29 | 34 | ||
30 | inherit autotools lib_package | 35 | inherit autotools lib_package |
31 | 36 | ||