From patchwork Tue Oct 23 01:47:54 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 193310 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 2F5D92C0106 for ; Tue, 23 Oct 2012 12:48:59 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 88FFB101CD2; Tue, 23 Oct 2012 01:48:53 +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 aqGfILRrDi8N; Tue, 23 Oct 2012 01:48:48 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 59AAD101CF3; Tue, 23 Oct 2012 01:48:28 +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 E30688F74A for ; Tue, 23 Oct 2012 01:48:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9AF3D8A393 for ; Tue, 23 Oct 2012 01:48:29 +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 Yirdhu6YOQqh for ; Tue, 23 Oct 2012 01:48:28 +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 828848A33F for ; Tue, 23 Oct 2012 01:48:28 +0000 (UTC) Received: from asgard (host64.186-124-35.telecom.net.ar [186.124.35.64]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q9N1mLLN027620 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 23 Oct 2012 01:48:24 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1350956906; bh=6EoB+E0VWv7fhmLBo1a5olKLOc8r1n4oN5hhwv7cGt0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=ca+CB0ZnHKgv3weW3Lk+A85vrosj/+df8FI6aGDdCuNj8PaI1xnAWe4oQ/EvKEYNg 7wK0t+YKvsBqlOfmA6mMVp2F6WDLKYfqELQAUYOZZ/BOZKTJHI49nQzpvZykiKfKh+ sGJZcVAstEaDPXLlTb2S0HlBEvTUSq3RJ5mhFEuU= Received: by asgard (sSMTP sendmail emulation); Mon, 22 Oct 2012 22:48:21 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 22 Oct 2012 22:47:54 -0300 Message-Id: <1350956875-1726-4-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1350956875-1726-1-git-send-email-gustavo@zacarias.com.ar> References: <1350956875-1726-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCHv6 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 Acked-by: Thomas Petazzoni --- 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