diff options
author | Baruch Siach <baruch@tkos.co.il> | 2014-05-11 11:34:52 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-11 20:50:30 +0200 |
commit | 7ed76d5427639987bfdf22ecf2cd10cdea1e8f95 (patch) | |
tree | 076dadcc89b9f85b6b1ed7bdf69b336525446d92 | |
parent | 89e16118b45c1bb8d112e8829d34e0883a6450be (diff) | |
download | buildroot-7ed76d5427639987bfdf22ecf2cd10cdea1e8f95.tar.gz buildroot-7ed76d5427639987bfdf22ecf2cd10cdea1e8f95.zip |
libeio: needs threads
Fixes:
http://autobuild.buildroot.net/results/278/27854bf8425d64dbb475653161bbf1f386173366/
libeio only reverse dependency (enlightenment) depends on
BR2_TOOLCHAIN_HAS_THREADS already.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/efl/libeio/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/efl/libeio/Config.in b/package/efl/libeio/Config.in index 0b2751ce6d..5b1e395788 100644 --- a/package/efl/libeio/Config.in +++ b/package/efl/libeio/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_LIBEIO select BR2_PACKAGE_LIBEET select BR2_PACKAGE_LIBEINA select BR2_PACKAGE_LIBECORE + depends on BR2_TOOLCHAIN_HAS_THREADS help Eio integrates with EFL (Ecore, Eina) to provide efficient filesystem Input/Output (I/O). It use the best techniques to @@ -16,3 +17,6 @@ config BR2_PACKAGE_LIBEIO naive implementations, and it is easy to use. http://trac.enlightenment.org/e/wiki/Eio + +comment "libeio needs a toolchain w/ threads" + depends on !BR2_TOOLCHAIN_HAS_THREADS |