From patchwork Thu Mar 7 20:18:29 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 225905 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 EB5A72C0342 for ; Fri, 8 Mar 2013 07:19:27 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 880D5103C2D; Thu, 7 Mar 2013 20:19:12 +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 T-DSy-Vj96dh; Thu, 7 Mar 2013 20:19:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id B686D10B87A; Thu, 7 Mar 2013 20:18:56 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 5AF328F74B for ; Thu, 7 Mar 2013 20:19:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id D2859A019A for ; Thu, 7 Mar 2013 20:19:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Iac+C9iDDePk for ; Thu, 7 Mar 2013 20:19:07 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.35.102]) by hemlock.osuosl.org (Postfix) with ESMTP id 735ABA0150 for ; Thu, 7 Mar 2013 20:19:07 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 83B00B5D; Thu, 7 Mar 2013 21:19:07 +0100 (CET) Received: from localhost (humanoidz.org [82.247.183.72]) by mail.free-electrons.com (Postfix) with ESMTPSA id C9E397B7 for ; Thu, 7 Mar 2013 21:19:06 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Thu, 7 Mar 2013 21:18:29 +0100 Message-Id: <1362687540-19440-2-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1362687540-19440-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1362687540-19440-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCH 01/32] xcb-util: add dependency on libxcb 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 The xcb-util lacks a dependency on libxcb. Without this dependency, it fails to build with: checking for XCB... no configure: error: in `/home/thomas/projets/buildroot/output/build/xcb-util-0.3.9': configure: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables XCB_CFLAGS and XCB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. Signed-off-by: Thomas Petazzoni --- package/x11r7/xcb-util/Config.in | 1 + package/x11r7/xcb-util/xcb-util.mk | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package/x11r7/xcb-util/Config.in b/package/x11r7/xcb-util/Config.in index cf79327..dd77b1d 100644 --- a/package/x11r7/xcb-util/Config.in +++ b/package/x11r7/xcb-util/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_XCB_UTIL bool "xcb-util" + depends on BR2_PACKAGE_LIBXCB help Libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. diff --git a/package/x11r7/xcb-util/xcb-util.mk b/package/x11r7/xcb-util/xcb-util.mk index fcf99ea..a1948e1 100644 --- a/package/x11r7/xcb-util/xcb-util.mk +++ b/package/x11r7/xcb-util/xcb-util.mk @@ -7,7 +7,7 @@ XCB_UTIL_VERSION = 0.3.9 XCB_UTIL_SOURCE = xcb-util-$(XCB_UTIL_VERSION).tar.bz2 XCB_UTIL_SITE = http://xcb.freedesktop.org/dist/ XCB_UTIL_INSTALL_STAGING = YES -XCB_UTIL_DEPENDENCIES = host-gperf +XCB_UTIL_DEPENDENCIES = host-gperf libxcb $(eval $(autotools-package))