diff options
author | Matt Weber <matthew.weber@rockwellcollins.com> | 2015-03-26 10:54:40 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-01 23:41:02 +0200 |
commit | 6be1abb14a4832c9d8e77bf316ddcdb2b393c265 (patch) | |
tree | 40744a7c08f44a5d8e56461d5c76f0876db10b3b | |
parent | aacbdd131b5723b8e090ee8b2dad1843046b3ffe (diff) | |
download | buildroot-6be1abb14a4832c9d8e77bf316ddcdb2b393c265.tar.gz buildroot-6be1abb14a4832c9d8e77bf316ddcdb2b393c265.zip |
jamvm: add depends on toolchain w/threads
Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/jamvm/Config.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/jamvm/Config.in b/package/jamvm/Config.in index f4809957cf..375bded624 100644 --- a/package/jamvm/Config.in +++ b/package/jamvm/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_JAMVM bool "jamvm" depends on BR2_INET_IPV6 + depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_x86_64 \ || BR2_mips || BR2_mipsel || BR2_powerpc select BR2_PACKAGE_ZLIB @@ -11,7 +12,8 @@ config BR2_PACKAGE_JAMVM http://jamvm.sf.net -comment "jamvm needs a toolchain w/ IPv6" +comment "jamvm needs a toolchain w/ IPv6, threads" depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_x86_64 \ || BR2_mips || BR2_mipsel || BR2_powerpc depends on !BR2_INET_IPV6 + depends on !BR2_TOOLCHAIN_HAS_THREADS |