From patchwork Tue Oct 2 13:22:27 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 188519 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 32A0F2C008B for ; Tue, 2 Oct 2012 23:24:14 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1F845101DA4; Tue, 2 Oct 2012 13:24:10 +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 1oBiVs78+aKl; Tue, 2 Oct 2012 13:24:03 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1806C10244B; Tue, 2 Oct 2012 13:22:56 +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 54E258F74A for ; Tue, 2 Oct 2012 13:23:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1560C8A3B3 for ; Tue, 2 Oct 2012 13:22:58 +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 Leso9u8zkAns for ; Tue, 2 Oct 2012 13:22:57 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [85.10.205.246]) by whitealder.osuosl.org (Postfix) with ESMTPS id 8E49C8A8DE for ; Tue, 2 Oct 2012 13:22:56 +0000 (UTC) Received: from asgard (host200.186-125-82.telecom.net.ar [186.125.82.200]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q92DMo7i025566 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 2 Oct 2012 13:22:52 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1349184174; bh=6EoB+E0VWv7fhmLBo1a5olKLOc8r1n4oN5hhwv7cGt0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=OIUaqn+5Dnea+yEkGYQ7XnKXT5H2971K33fJhi0+7zJuHAE5so7n0t+xx/4t2el0j 8gF10n6bvSurq+yDBAqRYIAWFLYKmq+ULRddLOvfjDpmUj3lm1KpsCOJUcLUPbzgQf 5JW/3Dugpxu8NGeBgnzNCZGJc4aQXKjVPU4HAlLA= Received: by asgard (sSMTP sendmail emulation); Tue, 02 Oct 2012 10:22:49 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 2 Oct 2012 10:22:27 -0300 Message-Id: <1349184148-28340-4-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1349184148-28340-1-git-send-email-gustavo@zacarias.com.ar> References: <1349184148-28340-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCHv4 4/5] pkg-config: mark as deprecated 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 Signed-off-by: Gustavo Zacarias --- package/pkg-config/Config.in | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/package/pkg-config/Config.in b/package/pkg-config/Config.in index eae0a21..7f96d9b 100644 --- a/package/pkg-config/Config.in +++ b/package/pkg-config/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_PKG_CONFIG bool "pkg-config" depends on BR2_USE_WCHAR # glib2 + depends on BR2_DEPRECATED select BR2_PACKAGE_LIBGLIB2 help pkg-config is a system for managing library compile/link @@ -11,4 +12,4 @@ config BR2_PACKAGE_PKG_CONFIG http://www.freedesktop.org/software/pkgconfig/ comment "pkg-config requires a toolchain with WCHAR support" - depends on !BR2_USE_WCHAR + depends on BR2_DEPRECATED && !BR2_USE_WCHAR