From patchwork Mon Mar 18 09:42:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 228424 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id C52D32C00C5 for ; Mon, 18 Mar 2013 20:42:17 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 8E06CA011E; Mon, 18 Mar 2013 09:42:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kpKIBq9zUBME; Mon, 18 Mar 2013 09:42:13 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id A6B36A00B3; Mon, 18 Mar 2013 09:42:13 +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 781EE8F74B for ; Mon, 18 Mar 2013 09:42:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E34DB8BDB7 for ; Mon, 18 Mar 2013 09:42:11 +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 7uUsd8YwtzeJ for ; Mon, 18 Mar 2013 09:42:11 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f49.google.com (mail-ee0-f49.google.com [74.125.83.49]) by whitealder.osuosl.org (Postfix) with ESMTPS id DAC0C85D75 for ; Mon, 18 Mar 2013 09:42:10 +0000 (UTC) Received: by mail-ee0-f49.google.com with SMTP id d41so2451458eek.22 for ; Mon, 18 Mar 2013 02:42:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:subject:date:message-id:x-mailer; bh=ILV9vZuxvyHvb5jptxzgdR1VF60dDU649XiMa8lQ6g8=; b=Nk/c5ijqLDrRxyVHYJLJju85+Oq2miECM1BsitloRpU7c8LVJAA5BP8LGTK/TK2gqW Xwd5Rng3WBvRqr+xqCDuPsSRUOzyeLk6LjoWI3baKl5Cv2sPpHTkWakZaWwEoCwGWzxD Orb7gxIqJI/csUh5yV0T7eHmYndmUEv+ojBZ+TbwIs/UhUaP7gXkvOHx+9LulJiaJl86 vPqs+jvIWDdlho532ap6ABPcTMg7GmbscJNdUDwsU0y3olW7bJYZIin9cQrrRUjBqaDX qcNdtcGtLxuKJHQb2rBbo0x4ZIFhsP7Mq8We5D6u1yShYbPaKSew6QFTUWUQXBxtDr54 TBVA== X-Received: by 10.14.193.134 with SMTP id k6mr47360417een.37.1363599728921; Mon, 18 Mar 2013 02:42:08 -0700 (PDT) Received: from localhost.localdomain (host86-167-129-159.range86-167.btcentralplus.com. [86.167.129.159]) by mx.google.com with ESMTPS id 46sm26008819eea.3.2013.03.18.02.42.07 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 18 Mar 2013 02:42:08 -0700 (PDT) From: spdawson@gmail.com To: buildroot@busybox.net Date: Mon, 18 Mar 2013 09:42:05 +0000 Message-Id: <1363599725-23511-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.7.10.4 Subject: [Buildroot] [PATCH] zeromq: require IPv6 support in toolchain 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 The zeromq package was recently bumped from version 2.2.0 to version 3.2.2, which has introduced a requirement for IPv6 support in the toolchain. At present, IPv6 support is mandatory in zeromq: there is no configuration option to enable/disable the feature. Signed-off-by: Simon Dawson --- package/zeromq/Config.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/zeromq/Config.in b/package/zeromq/Config.in index b7dc8a6..f93ab5d 100644 --- a/package/zeromq/Config.in +++ b/package/zeromq/Config.in @@ -1,9 +1,10 @@ -comment "zeromq requires a toolchain with C++, LARGEFILE + WCHAR support" - depends on !(BR2_INSTALL_LIBSTDCPP && BR2_LARGEFILE && BR2_USE_WCHAR) +comment "zeromq requires a toolchain with C++, IPV6, LARGEFILE and WCHAR support" + depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE && BR2_USE_WCHAR) config BR2_PACKAGE_ZEROMQ bool "zeromq" depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_INET_IPV6 depends on BR2_LARGEFILE # util-linux depends on BR2_USE_WCHAR # util-linux select BR2_PACKAGE_UTIL_LINUX