From patchwork Sat Oct 29 15:41:16 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 14554 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 04916FA3740 for ; Sat, 29 Oct 2022 15:41:59 +0000 (UTC) Received: from mailout12.t-online.de (mailout12.t-online.de [194.25.134.22]) by mx.groups.io with SMTP id smtpd.web12.4402.1667058110932808872 for ; Sat, 29 Oct 2022 08:41:51 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.22, mailfrom: f_l_k@t-online.de) Received: from fwd73.dcpf.telekom.de (fwd73.aul.t-online.de [10.223.144.99]) by mailout12.t-online.de (Postfix) with SMTP id 42A9F118F6 for ; Sat, 29 Oct 2022 17:41:49 +0200 (CEST) Received: from flk-MS-7C91.fritz.box ([79.219.224.130]) by fwd73.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1oonxz-3mkXcR0; Sat, 29 Oct 2022 17:41:47 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-openembedded][PATCH 3/3] spice: build with opus and opengl Date: Sat, 29 Oct 2022 17:41:16 +0200 Message-Id: <20221029154116.3128371-3-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221029154116.3128371-1-f_l_k@t-online.de> References: <20221029154116.3128371-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1667058107-2508E98D-BA67AE47/0/0 CLEAN NORMAL X-TOI-MSGID: 633362ee-ec46-48d4-a9b2-7862f41d2282 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 29 Oct 2022 15:41:59 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/99343 - remove COMPATIBLE_HOSTS whitelist because I was able to compile this for qemumips also Signed-off-by: Markus Volk --- meta-networking/recipes-support/spice/spice_git.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meta-networking/recipes-support/spice/spice_git.bb b/meta-networking/recipes-support/spice/spice_git.bb index b3e687476..69e220050 100644 --- a/meta-networking/recipes-support/spice/spice_git.bb +++ b/meta-networking/recipes-support/spice/spice_git.bb @@ -47,7 +47,7 @@ CFLAGS:append = " -Wno-error" PACKAGECONFIG:class-native = "" PACKAGECONFIG:class-nativesdk = "" -PACKAGECONFIG ?= "sasl" +PACKAGECONFIG ?= "sasl ${@bb.utils.filter('DISTRO_FEATURES', 'opengl', d)} opus" PACKAGECONFIG[celt051] = "--enable-celt051,--disable-celt051,celt051" PACKAGECONFIG[smartcard] = "--enable-smartcard,--disable-smartcard,libcacard," @@ -58,8 +58,6 @@ PACKAGECONFIG[opus] = "--enable-opus,--disable-opus,libopus," PACKAGECONFIG[opengl] = "--enable-opengl,--disable-opengl,," PACKAGECONFIG[xinerama] = "--enable-xinerama,--disable-xinerama,libxinerama," -COMPATIBLE_HOST = '(x86_64|i.86|aarch64).*-linux' - BBCLASSEXTEND = "native nativesdk" EXTRA_OECONF:append:toolchain-clang = " --disable-werror"