From patchwork Tue Feb 9 22:04:11 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 581085 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id A1D52140B94 for ; Wed, 10 Feb 2016 09:04:33 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D214A86DC3; Tue, 9 Feb 2016 22:04:32 +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 hixKziaDaTli; Tue, 9 Feb 2016 22:04:31 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 729E180131; Tue, 9 Feb 2016 22:04:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id AD3E31C1E62 for ; Tue, 9 Feb 2016 22:04:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id AA06E87778 for ; Tue, 9 Feb 2016 22:04:30 +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 03XzMiquU050 for ; Tue, 9 Feb 2016 22:04:29 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from exchange.essensium.com (220.77.144.195.ipv4.evonet.be [195.144.77.220]) by hemlock.osuosl.org (Postfix) with ESMTPS id 4FEBA87C76 for ; Tue, 9 Feb 2016 22:04:29 +0000 (UTC) Received: from localhost.localdomain (10.3.7.11) by beleexch01.local.ess-mail.com (10.3.7.8) with Microsoft SMTP Server (TLS) id 15.0.847.32; Tue, 9 Feb 2016 23:04:15 +0100 From: "Arnout Vandecappelle (Essensium/Mind)" To: Date: Tue, 9 Feb 2016 23:04:11 +0100 Message-ID: <1455055451-19200-1-git-send-email-arnout@mind.be> X-Mailer: git-send-email 2.7.0 MIME-Version: 1.0 X-Originating-IP: [10.3.7.11] X-ClientProxiedBy: beleexch01.local.ess-mail.com (10.3.7.8) To beleexch01.local.ess-mail.com (10.3.7.8) Cc: Bernd Kuhls , Ricardo Martincoski Subject: [Buildroot] [PATCH] package/x11r7/xapp_xf86dga: remove dependencies on Xt/Xaw/Xmu X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Since the bump to 1.0.3, xapp_xf86dga no longer uses libXt, libXaw and libXmu. So these dependencies should be removed from the .mk file. They were already removed from Config.in, leading to messages like: Makefile:475: *** xlib_libXaw is in the dependency chain of xapp_xf86dga that has added it to its _DEPENDENCIES variable without selecting it or depending on it from Config.in. Stop. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Cc: Bernd Kuhls Cc: Ricardo Martincoski Tested-by: Ricardo Martincoski --- package/x11r7/xapp_xf86dga/xapp_xf86dga.mk | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/package/x11r7/xapp_xf86dga/xapp_xf86dga.mk b/package/x11r7/xapp_xf86dga/xapp_xf86dga.mk index a2e08da..fe8e427 100644 --- a/package/x11r7/xapp_xf86dga/xapp_xf86dga.mk +++ b/package/x11r7/xapp_xf86dga/xapp_xf86dga.mk @@ -12,9 +12,6 @@ XAPP_XF86DGA_LICENSE_FILES = COPYING XAPP_XF86DGA_DEPENDENCIES = \ host-pkgconf \ xlib_libX11 \ - xlib_libXxf86dga \ - xlib_libXt \ - xlib_libXaw \ - xlib_libXmu + xlib_libXxf86dga $(eval $(autotools-package))