From patchwork Tue Jul 7 21:00:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 492595 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id A78771401AF for ; Wed, 8 Jul 2015 07:00:33 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C946895BFB; Tue, 7 Jul 2015 21:00:32 +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 AEdm0NVD29P2; Tue, 7 Jul 2015 21:00:32 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 4F82395BEA; Tue, 7 Jul 2015 21:00:32 +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 096CA1C4594 for ; Tue, 7 Jul 2015 21:00:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 073C095A34 for ; Tue, 7 Jul 2015 21:00:31 +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 rIlrBLYRp8Y0 for ; Tue, 7 Jul 2015 21:00:29 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout05.t-online.de (mailout05.t-online.de [194.25.134.82]) by hemlock.osuosl.org (Postfix) with ESMTPS id 8CCC895BF9 for ; Tue, 7 Jul 2015 21:00:29 +0000 (UTC) Received: from fwd21.aul.t-online.de (fwd21.aul.t-online.de [172.20.27.66]) by mailout05.t-online.de (Postfix) with SMTP id CF8392A230D for ; Tue, 7 Jul 2015 23:00:26 +0200 (CEST) Received: from fli4l.lan.fli4l (GuEPCkZQrhyq54POgB-7dZVm2MOATti6KL9UKJZJ4S-kjXi3bI+wNLUnG0tu9Bjgdn@[79.247.140.220]) by fwd21.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1ZCZyZ-1amgJU0; Tue, 7 Jul 2015 23:00:23 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:49765) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.85) (envelope-from ) id 1ZCZyY-00042l-2b; Tue, 07 Jul 2015 23:00:22 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Tue, 7 Jul 2015 23:00:19 +0200 Message-Id: <1436302819-31625-1-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 X-ID: GuEPCkZQrhyq54POgB-7dZVm2MOATti6KL9UKJZJ4S-kjXi3bI+wNLUnG0tu9Bjgdn X-TOI-MSGID: d8dc383b-cb5e-4a5a-9fcc-892cb56bc5d5 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 1/1] package/mplayer: Add additional X11 dependencies 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Proposed fix for https://bugs.busybox.net/show_bug.cgi?id=8206 Signed-off-by: Bernd Kuhls --- package/mplayer/mplayer.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/mplayer/mplayer.mk b/package/mplayer/mplayer.mk index 3a61b8f..5a46aa3 100644 --- a/package/mplayer/mplayer.mk +++ b/package/mplayer/mplayer.mk @@ -220,7 +220,10 @@ MPLAYER_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBTHEORA),libtheora) MPLAYER_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBPNG),libpng) MPLAYER_DEPENDENCIES += $(if $(BR2_PACKAGE_JPEG),jpeg) MPLAYER_DEPENDENCIES += $(if $(BR2_PACKAGE_XLIB_LIBX11),xlib_libX11) +MPLAYER_DEPENDENCIES += $(if $(BR2_PACKAGE_XLIB_LIBXEXT),xlib_libXext) +MPLAYER_DEPENDENCIES += $(if $(BR2_PACKAGE_XLIB_LIBXINERAMA),xlib_libXinerama) MPLAYER_DEPENDENCIES += $(if $(BR2_PACKAGE_XLIB_LIBXV),xlib_libXv) +MPLAYER_DEPENDENCIES += $(if $(BR2_PACKAGE_XLIB_LIBXXF86VM),xlib_libXxf86vm) # ARM optimizations ifeq ($(BR2_ARM_CPU_ARMV5),y)