From patchwork Sun Nov 10 20:33:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 290098 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 5395F2C0097 for ; Mon, 11 Nov 2013 07:33:25 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 2A2E28B990; Sun, 10 Nov 2013 20:33:24 +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 cb8Lgd0srkzq; Sun, 10 Nov 2013 20:33:23 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 15F068B992; Sun, 10 Nov 2013 20:33:23 +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 9E8CB1BF991 for ; Sun, 10 Nov 2013 20:33:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id A19C48C3A9 for ; Sun, 10 Nov 2013 20:33:21 +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 7jDeECPdf3be for ; Sun, 10 Nov 2013 20:33:21 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f181.google.com (mail-we0-f181.google.com [74.125.82.181]) by whitealder.osuosl.org (Postfix) with ESMTPS id BCE518C31C for ; Sun, 10 Nov 2013 20:33:20 +0000 (UTC) Received: by mail-we0-f181.google.com with SMTP id w61so495453wes.26 for ; Sun, 10 Nov 2013 12:33:19 -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=R4kxLRW8hYmbiQr8TZPBxabQHV0aUvIOD9pDGey+ZwQ=; b=NCiZj3Quyxzmoveu+e38JjuCoVoBywUc6lxQPbYpf0wiN3/oRkpBwGqKB/khAV3zTY CXh7n0suISO8ygZshl+l6NJdG/NI0vKXeHwQIp6xUnWSIM1OwPP09ppZ0Y51G1lhthZk Mr//llTKsFbxP3feppnJzpDsNW+dUCjzbNc3rqD8ngGmGT7MC92q00KaFI0QsPQRwY/Y B3VTNJ+R4AOOCvpCjq9jAaQ61gmb0EMSBoJuXzFY1ORiWv2KXWkpCPdTr2AzkV08F/lb fqc5lxha9LZbGUgxBfL0NZ7FZVzSXQEEP9bBFzmwjGLAeAuJkmgb8B6N4wk4CAJEztvg ldWQ== X-Received: by 10.194.240.197 with SMTP id wc5mr20591160wjc.23.1384115598952; Sun, 10 Nov 2013 12:33:18 -0800 (PST) Received: from percy.lan (host-92-24-119-175.ppp.as43234.net. [92.24.119.175]) by mx.google.com with ESMTPSA id mw9sm28498122wib.0.2013.11.10.12.33.17 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Nov 2013 12:33:18 -0800 (PST) From: spdawson@gmail.com To: buildroot@busybox.net Date: Sun, 10 Nov 2013 20:33:15 +0000 Message-Id: <1384115595-13780-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] libmicrohttpd: disable on avr32 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 epoll_create1 syscall is not available on avr32. Fixes build failures such as the following. http://autobuild.buildroot.net/results/dbd/dbdc86321c6c85703dd9aed3f974843203124d92 Signed-off-by: Simon Dawson --- package/libmicrohttpd/Config.in | 3 +++ package/ola/Config.in | 1 + 2 files changed, 4 insertions(+) diff --git a/package/libmicrohttpd/Config.in b/package/libmicrohttpd/Config.in index 15e3762..c0293f0 100644 --- a/package/libmicrohttpd/Config.in +++ b/package/libmicrohttpd/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBMICROHTTPD bool "libmicrohttpd" + depends on !BR2_avr32 # no epoll_create1 depends on BR2_TOOLCHAIN_HAS_THREADS help GNU libmicrohttpd is a small C library that makes it easy to @@ -18,6 +19,8 @@ config BR2_PACKAGE_LIBMICROHTTPD_SSL comment "libmicrohttpd needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_avr32 comment "libmicrohttpd https support needs a toolchain w/ wchar" depends on BR2_PACKAGE_LIBMICROHTTPD && !BR2_USE_WCHAR + depends on !BR2_avr32 diff --git a/package/ola/Config.in b/package/ola/Config.in index eb24a3a..7c5e0fe 100644 --- a/package/ola/Config.in +++ b/package/ola/Config.in @@ -23,6 +23,7 @@ menu "bindings and interface" config BR2_PACKAGE_OLA_WEB bool "http interface" + depends on !BR2_avr32 # libmicrohttpd select BR2_PACKAGE_LIBMICROHTTPD help Build OLA with browser interface.