From patchwork Fri Mar 24 12:49:55 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rahul Jain X-Patchwork-Id: 743170 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vqNZN0j2cz9s8B for ; Fri, 24 Mar 2017 23:50:52 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 20BFB2DC20; Fri, 24 Mar 2017 12:50:50 +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 cShmuO3P59EM; Fri, 24 Mar 2017 12:50:46 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 500052DD9C; Fri, 24 Mar 2017 12:50:45 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id A70BD1C29CD for ; Fri, 24 Mar 2017 12:50:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id A1DE7814C1 for ; Fri, 24 Mar 2017 12:50:35 +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 bsJFaquNUs5N for ; Fri, 24 Mar 2017 12:50:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by whitealder.osuosl.org (Postfix) with ESMTP id 292558121C for ; Fri, 24 Mar 2017 12:50:33 +0000 (UTC) Received: from hhmail02.hh.imgtec.org (unknown [10.100.10.20]) by Forcepoint Email with ESMTPS id 07BF0585B4A9C for ; Fri, 24 Mar 2017 12:50:29 +0000 (GMT) Received: from pudesk288-linux.pu.imgtec.org (192.168.91.73) by hhmail02.hh.imgtec.org (10.100.10.20) with Microsoft SMTP Server (TLS) id 14.3.294.0; Fri, 24 Mar 2017 12:50:31 +0000 From: Rahul Jain To: Date: Fri, 24 Mar 2017 18:19:55 +0530 Message-ID: <1490359795-18362-6-git-send-email-Rahul.Jain@imgtec.com> X-Mailer: git-send-email 2.6.2 In-Reply-To: <1490359795-18362-1-git-send-email-Rahul.Jain@imgtec.com> References: <1490359795-18362-1-git-send-email-Rahul.Jain@imgtec.com> MIME-Version: 1.0 X-Originating-IP: [192.168.91.73] Cc: Rahul Jain Subject: [Buildroot] [PATCH 6/6] libubox: enable static build 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: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" upstream has added the support to build the static libraries. update comment for BR2_STATIC_LIBS for other packages having dependency on libubox. Signed-off-by: Rahul Jain --- package/libubox/Config.in | 4 ---- package/ubus/Config.in | 2 +- package/ustream-ssl/Config.in | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/package/libubox/Config.in b/package/libubox/Config.in index 25ef4bb..ba10f8d 100644 --- a/package/libubox/Config.in +++ b/package/libubox/Config.in @@ -1,6 +1,5 @@ config BR2_PACKAGE_LIBUBOX bool "libubox" - depends on !BR2_STATIC_LIBS help This library originates from the OpenWrt project to handle the configuration file infrastructure, but can @@ -8,6 +7,3 @@ config BR2_PACKAGE_LIBUBOX than OpenWrt. http://nbd.name/gitweb.cgi?p=luci2/libubox.git;a=summary - -comment "libubox needs a toolchain w/ dynamic library" - depends on BR2_STATIC_LIBS diff --git a/package/ubus/Config.in b/package/ubus/Config.in index c14f6a8..84e13f8 100644 --- a/package/ubus/Config.in +++ b/package/ubus/Config.in @@ -7,7 +7,7 @@ config BR2_PACKAGE_UBUS select BR2_PACKAGE_LIBUBOX select BR2_PACKAGE_JSON_C depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c - depends on !BR2_STATIC_LIBS # libubox + depends on !BR2_STATIC_LIBS help IPC/RPC bus that allows communication between processes. diff --git a/package/ustream-ssl/Config.in b/package/ustream-ssl/Config.in index 540e436..a12c37b 100644 --- a/package/ustream-ssl/Config.in +++ b/package/ustream-ssl/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_USTREAM_SSL bool "ustream-ssl" - depends on !BR2_STATIC_LIBS #libubox + depends on !BR2_STATIC_LIBS select BR2_PACKAGE_LIBUBOX select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_MBEDTLS help