From patchwork Thu Mar 26 15:54:40 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Weber X-Patchwork-Id: 455094 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 1F34B14009B for ; Fri, 27 Mar 2015 02:55:05 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 199FD923DA; Thu, 26 Mar 2015 15:55:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JlGI-ErU-mb3; Thu, 26 Mar 2015 15:55:03 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id E741C923E2; Thu, 26 Mar 2015 15:55:02 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 8D44A1C2991 for ; Thu, 26 Mar 2015 15:55:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 871D5923D5 for ; Thu, 26 Mar 2015 15:55:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YMATqYEzOO8t for ; Thu, 26 Mar 2015 15:55:00 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from secvs02.rockwellcollins.com (secvs02.rockwellcollins.com [205.175.225.241]) by whitealder.osuosl.org (Postfix) with ESMTPS id 4DE85923D4 for ; Thu, 26 Mar 2015 15:55:00 +0000 (UTC) Received: from ofwgwc03.rockwellcollins.com (HELO ciulimr01.rockwellcollins.com) ([205.175.225.12]) by secvs02.rockwellcollins.com with ESMTP; 26 Mar 2015 10:54:42 -0500 X-Received: from largo.rockwellcollins.com (unknown [192.168.140.76]) by ciulimr01.rockwellcollins.com (Postfix) with ESMTP id E9184600FB; Thu, 26 Mar 2015 10:54:41 -0500 (CDT) From: Matt Weber To: buildroot@busybox.net Date: Thu, 26 Mar 2015 10:54:40 -0500 Message-Id: <1427385280-63133-1-git-send-email-matthew.weber@rockwellcollins.com> X-Mailer: git-send-email 1.9.1 Subject: [Buildroot] [PATCH 1/1] jamvm: add depends on toolchain w/threads X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Matt Weber --- package/jamvm/Config.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/jamvm/Config.in b/package/jamvm/Config.in index f480995..1e33f42 100644 --- a/package/jamvm/Config.in +++ b/package/jamvm/Config.in @@ -5,13 +5,15 @@ config BR2_PACKAGE_JAMVM || BR2_mips || BR2_mipsel || BR2_powerpc select BR2_PACKAGE_ZLIB select BR2_PACKAGE_CLASSPATH + depends on BR2_TOOLCHAIN_HAS_THREADS help JamVM is a new Java Virtual Machine which conforms to the JVM specification version 2 (blue book). http://jamvm.sf.net -comment "jamvm needs a toolchain w/ IPv6" +comment "jamvm needs a toolchain w/ IPv6 and 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