From patchwork Sun Oct 21 15:37:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yann Diorcet X-Patchwork-Id: 193036 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [130.225.254.102]) by ozlabs.org (Postfix) with ESMTP id E71252C008C for ; Mon, 22 Oct 2012 02:38:19 +1100 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id B76EB3FD21 for ; Sun, 21 Oct 2012 17:38:18 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) by hugin.dotsrc.org (Postfix) with ESMTPS id 9C89940196 for ; Sun, 21 Oct 2012 17:38:16 +0200 (CEST) Received: by mail-wg0-f47.google.com with SMTP id ge7so1153094wgb.16 for ; Sun, 21 Oct 2012 08:38:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=0ham9ZBCqsQV5G3EgwLsQPxKCqm06BSilBxDoxKMAIo=; b=DepnOdsOcIGd2a/HKWFGO/berCn3+nAvumuXQCqXBORngItTehz9/akkZfbs0P7GCd ZvtICruAp9GFDTLvqsojrd6J+GUynLaokt8C7wk4M4ea7u94TM2E1pC3N54QQ0a+b3as Sy2+eCoD4g+sIuN8X4XmNDCzfWbCOuECukiLOpcbB9R4KfGOTJWavXiJVKl0TEuTZY/l onFm1113LdiU6LUmZD9+guzon6AW0j1KXS6mf5/bVDMPErgKibUNGX/bQUnPVs5BE4wA o/+bBkDZUA9vVX7anBuq3OmlhMQ7CHEcTEOiHQ46/UxT0VUDljOccNKiImIWxTwtagww QEkw== Received: by 10.216.45.135 with SMTP id p7mr4168436web.129.1350833896503; Sun, 21 Oct 2012 08:38:16 -0700 (PDT) Received: from localhost.localdomain (dom38-1-82-236-154-183.fbx.proxad.net. [82.236.154.183]) by mx.google.com with ESMTPS id gm7sm16535929wib.10.2012.10.21.08.38.15 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 21 Oct 2012 08:38:15 -0700 (PDT) From: Yann Diorcet To: dev@oe-lite.org Subject: [PATCH 13/16] pkg-config: rework for osx and mingw32 Date: Sun, 21 Oct 2012 17:37:52 +0200 Message-Id: <1350833876-9499-13-git-send-email-diorcet.yann@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1350833876-9499-1-git-send-email-diorcet.yann@gmail.com> References: <1350833876-9499-1-git-send-email-diorcet.yann@gmail.com> Cc: Yann Diorcet X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org From: Yann Diorcet --- recipes/pkg-config/pkg-config.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/pkg-config/pkg-config.inc b/recipes/pkg-config/pkg-config.inc index 038cbca..0e9c206 100644 --- a/recipes/pkg-config/pkg-config.inc +++ b/recipes/pkg-config/pkg-config.inc @@ -9,7 +9,8 @@ RECIPE_TYPES = "machine native sdk" inherit autotools-autoreconf pkgconfig -DEPENDS = "libdl libpthread libglib" +DEPENDS = "libdl libglib" +DEPENDS:>TARGET_OS_linux-gnu = " libpthread" SRC_URI = "http://pkgconfig.freedesktop.org/releases/pkg-config-${PV}.tar.gz"