From patchwork Sat Oct 12 15:39:31 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 1175726 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=t-online.de Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46r8C26pGPz9sNx for ; Sun, 13 Oct 2019 02:39:42 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 99272882E7; Sat, 12 Oct 2019 15:39:40 +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 lwJSErJlc76O; Sat, 12 Oct 2019 15:39:38 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id CE443880C7; Sat, 12 Oct 2019 15:39:38 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 96F0C1BF339 for ; Sat, 12 Oct 2019 15:39:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 939AA87736 for ; Sat, 12 Oct 2019 15:39:37 +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 Gg67bprH2bJp for ; Sat, 12 Oct 2019 15:39:36 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout07.t-online.de (mailout07.t-online.de [194.25.134.83]) by whitealder.osuosl.org (Postfix) with ESMTPS id 8F56D8771E for ; Sat, 12 Oct 2019 15:39:36 +0000 (UTC) Received: from fwd37.aul.t-online.de (fwd37.aul.t-online.de [172.20.27.137]) by mailout07.t-online.de (Postfix) with SMTP id 65F47420E8D9 for ; Sat, 12 Oct 2019 17:39:34 +0200 (CEST) Received: from fli4l.lan.fli4l (TDPJhQZp8hRvx4JZNLmJ1U8G9bhQ0HqPRXuKsphwu069Mg3T1e9Tu0uZy4Yof6AgSt@[84.161.190.184]) by fwd37.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1iJJUS-4RtYKe0; Sat, 12 Oct 2019 17:39:32 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:42814) by fli4l.lan.fli4l with esmtp (Exim 4.92.3) (envelope-from ) id 1iJJUS-0004fV-0h for buildroot@buildroot.org; Sat, 12 Oct 2019 17:39:32 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 12 Oct 2019 17:39:31 +0200 Message-Id: <20191012153931.24484-1-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-ID: TDPJhQZp8hRvx4JZNLmJ1U8G9bhQ0HqPRXuKsphwu069Mg3T1e9Tu0uZy4Yof6AgSt X-TOI-MSGID: 90399719-333e-403b-b5a6-44f999722a7b Subject: [Buildroot] [PATCH 1/1] package/libva: switch to virtual opengl provider X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 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" This allows to use libva without mesa3d. Signed-off-by: Bernd Kuhls --- package/libva/libva.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/libva/libva.mk b/package/libva/libva.mk index 6c8243da90..176f971128 100644 --- a/package/libva/libva.mk +++ b/package/libva/libva.mk @@ -20,8 +20,8 @@ LIBVA_CONF_OPTS = \ ifeq ($(BR2_PACKAGE_XORG7),y) LIBVA_DEPENDENCIES += xlib_libX11 xlib_libXext xlib_libXfixes LIBVA_CONF_OPTS += --enable-x11 -ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_GLX),y) -LIBVA_DEPENDENCIES += mesa3d +ifeq ($(BR2_PACKAGE_HAS_LIBGL),y) +LIBVA_DEPENDENCIES += libgl LIBVA_CONF_OPTS += --enable-glx endif else