From patchwork Sun Jun 9 12:46:38 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 250040 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 6A8CF2C02F5 for ; Sun, 9 Jun 2013 22:46:52 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 63B4226D6A; Sun, 9 Jun 2013 12:46:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tAoGr9HR6hSw; Sun, 9 Jun 2013 12:46:50 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 015862684C; Sun, 9 Jun 2013 12:46:50 +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 00AB28F7A2 for ; Sun, 9 Jun 2013 12:46:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DE9228BBBF for ; Sun, 9 Jun 2013 12:46:47 +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 Z2eawtc9tIsA for ; Sun, 9 Jun 2013 12:46:47 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id DF7208BBC7 for ; Sun, 9 Jun 2013 12:46:46 +0000 (UTC) Received: from asgard (host113.181-14-142.telecom.net.ar [181.14.142.113]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r59Ckd4l007097 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 9 Jun 2013 12:46:42 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1370782004; bh=RmZXVTg7sZESyINM85YOgAM0C+pKX/Nxmrbf0g5nc60=; h=From:To:Cc:Subject:Date; b=MvMfPlY8nWy/26sbJ8OlFysQzSwfGu6AWRspJYvrGxVLcpJy5WXS6bH7C0bHZwZw+ GttSjNNFAf8QqkAkgxCAWxNS2gqj5IW4+CvtK5+JBdJa7tmTLvpF7aBT2MU1KA8TN2 6q9HBwZLL7SfDE+cX06cjAg+iPrnB8WC//lw0JQ0= Received: by asgard (sSMTP sendmail emulation); Sun, 09 Jun 2013 09:46:38 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sun, 9 Jun 2013 09:46:38 -0300 Message-Id: <1370781998-17422-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] samba: needs threads X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net As pointed by Thomas on IRC. Fixes: http://autobuild.buildroot.net/results/24f/24fe95a7775af10c6ed7514cbc72a2189e57bc25/ Signed-off-by: Gustavo Zacarias --- package/samba/Config.in | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/package/samba/Config.in b/package/samba/Config.in index 0ab67ed..a3218b5 100644 --- a/package/samba/Config.in +++ b/package/samba/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_SAMBA bool "samba" + depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_POPT help Provides print services to all manner of SMB/CIFS clients, @@ -11,6 +12,9 @@ config BR2_PACKAGE_SAMBA NOTE: A complete Samba install takes over 50MB of space, so choose only the components you need. +comment "samba needs a toolchain with thread support" + depends on !BR2_TOOLCHAIN_HAS_THREADS + if BR2_PACKAGE_SAMBA config BR2_PACKAGE_SAMBA_MAX_DEBUGLEVEL @@ -240,14 +244,13 @@ config BR2_PACKAGE_SAMBA_AVAHI bool "support avahi" default y depends on BR2_PACKAGE_AVAHI_DAEMON - depends on BR2_TOOLCHAIN_HAS_THREADS # dbus depends on BR2_USE_MMU # dbus select BR2_PACKAGE_DBUS help Include support for avahi -comment "support avahi - disabled (requires avahi-daemon and thread support in toolchain)" - depends on !BR2_PACKAGE_AVAHI_DAEMON || !BR2_TOOLCHAIN_HAS_THREADS +comment "support avahi - disabled (requires avahi-daemon)" + depends on !BR2_PACKAGE_AVAHI_DAEMON config BR2_PACKAGE_SAMBA_GAMIN bool "support gamin"