From patchwork Tue Nov 12 08:28:44 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 290552 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 0883D2C00BC for ; Tue, 12 Nov 2013 19:28:56 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E1CFE8C22C; Tue, 12 Nov 2013 08:28:54 +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 LBooxNacZEhF; Tue, 12 Nov 2013 08:28:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 6DC708ADCD; Tue, 12 Nov 2013 08:28:52 +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 D46F41BF97E for ; Tue, 12 Nov 2013 08:28:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D091F8ADCD for ; Tue, 12 Nov 2013 08:28:51 +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 gfKIvZwlDfFA for ; Tue, 12 Nov 2013 08:28:50 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f171.google.com (mail-we0-f171.google.com [74.125.82.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id E87468AD7F for ; Tue, 12 Nov 2013 08:28:49 +0000 (UTC) Received: by mail-we0-f171.google.com with SMTP id t61so2312535wes.30 for ; Tue, 12 Nov 2013 00:28:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=hbykzFDFVv9pk94ypbQTPcKfOKFCkP35EMVQNn/H8rM=; b=cjM5whn7UPvENH9tJhYkJ/naLdX3bluCE8zOcWhTnneDdjQGyzjfjWZOikde8TiT0v BGpX0/cfoddNECEt8PiYqKKIisWS++ZXfpkOFf73tzY+YCR97UQhQPPLm4L7nAXme+Vf 9bK+R1EpzsfV0Q1Uaps8ZJNXbAd5xnxd3emKJaS1Emkm8ylrc2WrFEgziLckqon3LHvn jWXK6vr3B/FYH+QimXqVJu3NY9NWwfkv5eKUFVfsNU4RvgxCoTP66BOA2UWG/HP4th76 SzsOge7uDRBH9jasaCfYDYyP20MwcvOFJmOBeasRRjJeMwIi4Ms29ADaG+KJ4QgwNgGP i51g== X-Received: by 10.181.13.6 with SMTP id eu6mr1293506wid.42.1384244928236; Tue, 12 Nov 2013 00:28:48 -0800 (PST) Received: from localhost.localdomain (host86-134-30-28.range86-134.btcentralplus.com. [86.134.30.28]) by mx.google.com with ESMTPSA id hv5sm41993232wib.2.2013.11.12.00.28.46 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 12 Nov 2013 00:28:47 -0800 (PST) From: spdawson@gmail.com To: buildroot@busybox.net Date: Tue, 12 Nov 2013 08:28:44 +0000 Message-Id: <1384244924-31625-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] audiofile: needs dynamic library 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 From: Simon Dawson Fixes build failures such as the following. http://autobuild.buildroot.net/results/c00/c002711ef82fb29f1765df251bd0006caeccc508/ Signed-off-by: Simon Dawson --- package/audiofile/Config.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/audiofile/Config.in b/package/audiofile/Config.in index 4aa8d69..9752648 100644 --- a/package/audiofile/Config.in +++ b/package/audiofile/Config.in @@ -1,11 +1,12 @@ config BR2_PACKAGE_AUDIOFILE bool "audiofile" depends on BR2_INSTALL_LIBSTDCPP + depends on !BR2_PREFER_STATIC_LIB help The Audio File Library handles reading and writing audio files in many common formats. http://www.68k.org/~michael/audiofile/ -comment "audiofile needs a toolchain w/ C++" - depends on !BR2_INSTALL_LIBSTDCPP +comment "audiofile needs a toolchain w/ C++, dynamic library" + depends on !BR2_INSTALL_LIBSTDCPP || BR2_PREFER_STATIC_LIB