From patchwork Sat Mar 28 19:34:32 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 455701 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 28D0814008F for ; Sun, 29 Mar 2015 06:34:41 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="verification failed; unprotected key" header.d=gmail.com header.i=@gmail.com header.b=sfA8INeD; dkim-adsp=none (unprotected policy); dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 8F37327189; Sat, 28 Mar 2015 19:34:39 +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 eYHdQuw28eo6; Sat, 28 Mar 2015 19:34:38 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 747202470A; Sat, 28 Mar 2015 19:34:38 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id A43F91C2983 for ; Sat, 28 Mar 2015 19:34:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 9E3AC2470A for ; Sat, 28 Mar 2015 19:34:37 +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 0SwjhuwLS9rG for ; Sat, 28 Mar 2015 19:34:36 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f48.google.com (mail-wg0-f48.google.com [74.125.82.48]) by silver.osuosl.org (Postfix) with ESMTPS id 9B0381FEAE for ; Sat, 28 Mar 2015 19:34:36 +0000 (UTC) Received: by wgra20 with SMTP id a20so131107929wgr.3 for ; Sat, 28 Mar 2015 12:34:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=xXpvZy/NGuBOEOBbCeXuIsBYtzzyPiS6e62/eClEAgk=; b=sfA8INeDmpXQgDCkqlwtcBvAobEbVSbiCn7QYee/J+qsvfT/itPrqy1IVQA93KIu00 hlzHTPmaNLVtrcgRveusHOy7qsjQ8EN9vuDGOrXKulN3+g8lCRb2asTld30ueAStEU1t tTdflO1B1HzuMsshGNtfVQCynhln6gcRx7EOv5fr++qLeLwnjPRYv5BZykGTdRYRRZJx i3WQIox+/8C6al08nBkVGfcyJBOqWDODr++SEJzQ2XiVMpX0m+BhnKnhKs7Ou2k2UoYm QfnFQ7QtgKxbRpo6Q5PLjYH+5bc+AI52sehannQ9rYy/BqrFyk890dxqXYSXGNBZbl1q HTBA== X-Received: by 10.194.236.200 with SMTP id uw8mr47324392wjc.10.1427571275267; Sat, 28 Mar 2015 12:34:35 -0700 (PDT) Received: from beast.localdomain (dynamic-adsl-78-15-148-113.clienti.tiscali.it. [78.15.148.113]) by mx.google.com with ESMTPSA id j7sm8320265wix.4.2015.03.28.12.34.33 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 28 Mar 2015 12:34:34 -0700 (PDT) From: Fabio Porcedda To: buildroot@uclibc.org Date: Sat, 28 Mar 2015 20:34:32 +0100 Message-Id: <1427571272-8465-1-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 2.3.4 Cc: "Yann E. MORIN" Subject: [Buildroot] [PATCH] yaml-cpp: requires boost 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" The Boost C++ library is already selected in the Config.in but it was missing in the yaml-cpp.mk file. Fix build failure: CMake Error at /home/tetsuya/buildroot/br/output/host/usr/share/cmake-3.1/Modules/FindBoost.cmake:1182 (message): Unable to find the requested Boost libraries. make: *** [/home/tetsuya/buildroot/br/output/build/yaml-cpp-0.5.1/.stamp_configured] Error 1 Signed-off-by: Fabio Porcedda Acked-by: "Yann E. MORIN" --- package/yaml-cpp/yaml-cpp.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/yaml-cpp/yaml-cpp.mk b/package/yaml-cpp/yaml-cpp.mk index 5ebdb23..afc70bd 100644 --- a/package/yaml-cpp/yaml-cpp.mk +++ b/package/yaml-cpp/yaml-cpp.mk @@ -10,4 +10,6 @@ YAML_CPP_INSTALL_STAGING = YES YAML_CPP_LICENSE = MIT YAML_CPP_LICENSE_FILES = license.txt +YAML_CPP_DEPENDENCIES = boost + $(eval $(cmake-package))