From patchwork Thu May 9 22:22:01 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gilles Talis X-Patchwork-Id: 242863 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id E59E42C00DA for ; Fri, 10 May 2013 08:22:23 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id E8D5A102682; Thu, 9 May 2013 22:22:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6-zlKkz+1Zr0; Thu, 9 May 2013 22:22:02 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 2F8A610279F; Thu, 9 May 2013 22:22: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 D16CD8F79E for ; Thu, 9 May 2013 22:22:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2F5EA8D105 for ; Thu, 9 May 2013 22:22:18 +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 i68lssLymRNj for ; Thu, 9 May 2013 22:22:13 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pa0-f46.google.com (mail-pa0-f46.google.com [209.85.220.46]) by whitealder.osuosl.org (Postfix) with ESMTPS id 24C378CFB7 for ; Thu, 9 May 2013 22:22:13 +0000 (UTC) Received: by mail-pa0-f46.google.com with SMTP id fa10so2425838pad.5 for ; Thu, 09 May 2013 15:22:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=ppPmii9tJLM7S6Ev7SC7uiOT0ue6DkgJeVn4Q+4yHDo=; b=d9yO+n+thdJcnPHBxrBbTZ4dq7s1oI5om6I9jH6TAWZNiSMuTRg4j2QexQjzYSZjz+ C0/F3TI6T3W59NOiNH8sa9Xlin+Mir/1mhv/fQzFHLRVw8703X/2fwhfbJwgU9Pn53xT lxdiCo0tpP8ZbSU5w4S0taVuva+QKpfUFCSe4ohVvZ59qobxj0wjfHGaORvQ9z7X8nFI de2N1eaRiQbL4ubSBSei3nkAZq6GtxiIYMy1CXYWmA64TIweZL9/ZXW7Mpl2TjzgN4Z+ XYJS+BAcwH2wJTdsaOt5ls8BMY+zbICWwd/zEhnadB8Ha/1LS/XYw//27Psx8j+9fclT X2Lw== X-Received: by 10.68.226.225 with SMTP id rv1mr11597840pbc.55.1368138134025; Thu, 09 May 2013 15:22:14 -0700 (PDT) Received: from localhost.localdomain ([72.166.5.70]) by mx.google.com with ESMTPSA id zo4sm6585pbc.21.2013.05.09.15.22.12 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 09 May 2013 15:22:13 -0700 (PDT) From: Gilles Talis To: buildroot@busybox.net Date: Thu, 9 May 2013 15:22:01 -0700 Message-Id: <1368138122-5950-1-git-send-email-gilles.talis@gmail.com> X-Mailer: git-send-email 1.7.4.1 Subject: [Buildroot] [PATCH 1/2] hplip: needs toolchain with threads support 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 hplip uses libusb that requires a toolchain with threads support Fixes: http://autobuild.buildroot.org/results/12fb9bb8c93c1cc1f93ba8e15558d1630f2e7c3d Signed-off-by: Gilles Talis --- package/hplip/Config.in | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package/hplip/Config.in b/package/hplip/Config.in index d8a1580..c496513 100644 --- a/package/hplip/Config.in +++ b/package/hplip/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_HPLIP bool "hplip" depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_TOOLCHAIN_HAS_THREADS # libusb depends on BR2_PACKAGE_CUPS select BR2_PACKAGE_LIBUSB select BR2_PACKAGE_JPEG @@ -14,5 +15,5 @@ config BR2_PACKAGE_HPLIP http://hplipopensource.com/ -comment "hplip requires a toolchain with C++ support enabled" - depends on !BR2_INSTALL_LIBSTDCPP +comment "hplip requires a toolchain with threads and C++ support" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS