diff options
| author | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-04 13:31:19 +0200 |
|---|---|---|
| committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-04 13:31:19 +0200 |
| commit | b6d92bf415df33ac86487d68f5f8299f406859d2 (patch) | |
| tree | 64facc9313fe3f8227ffab39790719f015997043 | |
| parent | 24058f10a70812de695f6bf8be3f66f0abcc179c (diff) | |
| download | buildroot-b6d92bf415df33ac86487d68f5f8299f406859d2.tar.gz buildroot-b6d92bf415df33ac86487d68f5f8299f406859d2.zip | |
libevas: async image preload support needs threads support in toolchain
Fixes http://autobuild.buildroot.net/results/92b/92b3990e3a51c9e400cff31a1f0d23aeb5085a54/
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| -rw-r--r-- | package/efl/libevas/libevas.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/efl/libevas/libevas.mk b/package/efl/libevas/libevas.mk index 41ceb49cc9..46de4cb4f7 100644 --- a/package/efl/libevas/libevas.mk +++ b/package/efl/libevas/libevas.mk @@ -203,6 +203,11 @@ else LIBEVAS_CONF_OPT += --disable-font-loader-eet endif +# async image preload support needs threads support in toolchain +ifneq ($(BR2_TOOLCHAIN_HAS_THREADS),y) +LIBEVAS_CONF_OPT += --disable-async-preload +endif + # libevas installs the source code of examples on the target, which # are generally not useful. define LIBEVAS_REMOVE_EXAMPLES |

