From patchwork Thu Aug 9 11:00:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 176050 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 746502C0094 for ; Thu, 9 Aug 2012 21:00:23 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B2BC6254F6; Thu, 9 Aug 2012 11:00:21 +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 pFnnnqgc5Ydo; Thu, 9 Aug 2012 11:00:20 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 744D2254EF; Thu, 9 Aug 2012 11:00:20 +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 A86B28F791 for ; Thu, 9 Aug 2012 11:00:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9541D8F73C for ; Thu, 9 Aug 2012 11:00:18 +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 tRLymhUlVTFg for ; Thu, 9 Aug 2012 11:00:15 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f43.google.com (mail-ee0-f43.google.com [74.125.83.43]) by whitealder.osuosl.org (Postfix) with ESMTPS id 081FC8F6A7 for ; Thu, 9 Aug 2012 11:00:14 +0000 (UTC) Received: by eekd4 with SMTP id d4so145003eek.16 for ; Thu, 09 Aug 2012 04:00:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=dGd5IUCMnwj+8xt2Ht9BfqzmRnl7Dks2EaLV8IN0T5w=; b=yLMlYMYndmhxRGRxLlQHAZSy89VXtyLAnL8/TH1uoxgjcqcqe8wswgcxNiVxmlN3Nm s0kNNLkw2SkqPSYuvE2q5tc5xRDLVNmUaVve2yYcYG8H6k7EDeBPJKONUmFCyHJV3xaA rCWQuqtZ4TUKftaAVSRbZWrrahIaHF1qYiS0QnWhdtX4hqmYqaRHiyi5IwbqXMvpd7LU 1bdVoJLtXeasq61ohzinbmWFzQaZUdQTc1zYrtbRUn66kuah6RLmSiDVdInOTnau0bdl aG2OM711uackfFLhLfIEBI475ZwsZPSHOBiVvktNuVwHel+WQWzTk1K7dy8rAf9TAbI6 s4bQ== Received: by 10.14.0.198 with SMTP id 46mr6172882eeb.30.1344510012770; Thu, 09 Aug 2012 04:00:12 -0700 (PDT) Received: from percy.train.local ([213.170.149.177]) by mx.google.com with ESMTPS id q3sm2539213eeo.4.2012.08.09.04.00.10 (version=SSLv3 cipher=OTHER); Thu, 09 Aug 2012 04:00:11 -0700 (PDT) From: spdawson@gmail.com To: buildroot@busybox.net Date: Thu, 9 Aug 2012 12:00:09 +0100 Message-Id: <1344510009-18476-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] gdk-pixbuf: build x11 support, if appropriate 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 From: Simon Dawson If libX11 is available, then gdk-pixbuf can be built with X11 support. Signed-off-by: Simon Dawson --- package/gdk-pixbuf/gdk-pixbuf.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package/gdk-pixbuf/gdk-pixbuf.mk b/package/gdk-pixbuf/gdk-pixbuf.mk index 751f499..0d9e206 100644 --- a/package/gdk-pixbuf/gdk-pixbuf.mk +++ b/package/gdk-pixbuf/gdk-pixbuf.mk @@ -34,6 +34,11 @@ else GDK_PIXBUF_DEPENDENCIES += tiff endif +ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y) +GDK_PIXBUF_CONF_OPT += --with-x11 +GDK_PIXBUF_DEPENDENCIES += xlib_libX11 +endif + GDK_PIXBUF_DEPENDENCIES += \ $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) \ $(if $(BR2_ENABLE_LOCALE),,libiconv) \