From patchwork Tue Jun 15 19:45:36 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartosz Bilas X-Patchwork-Id: 1492440 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=smtp1.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from smtp1.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4G4JhZ24yTz9sRf for ; Wed, 16 Jun 2021 05:45:50 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by smtp1.osuosl.org (Postfix) with ESMTP id 22BF583C1D; Tue, 15 Jun 2021 19:45:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp1.osuosl.org ([127.0.0.1]) by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xx_Bm7Vlsg6M; Tue, 15 Jun 2021 19:45:47 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp1.osuosl.org (Postfix) with ESMTP id 865A0838FB; Tue, 15 Jun 2021 19:45:46 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 52D0B1BF2B3 for ; Tue, 15 Jun 2021 19:45:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id 38BD960898 for ; Tue, 15 Jun 2021 19:45:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp3.osuosl.org ([127.0.0.1]) by localhost (smtp3.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yw-N10sFySyD for ; Tue, 15 Jun 2021 19:45:42 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.8.0 Received: from mail.grinn-global.com (mail.grinn-global.com [77.55.128.204]) by smtp3.osuosl.org (Postfix) with ESMTPS id E281960886 for ; Tue, 15 Jun 2021 19:45:41 +0000 (UTC) X-Virus-Scanned: by amavisd-new using ClamAV (22) Received: from bartekk-pc.lan (host-81-161-202-34.oxylion.net.pl [81.161.202.34]) by server220076.nazwa.pl (Postfix) with ESMTP id D39211C5DFF; Tue, 15 Jun 2021 21:45:38 +0200 (CEST) From: Bartosz Bilas To: buildroot@buildroot.org Date: Tue, 15 Jun 2021 21:45:36 +0200 Message-Id: <20210615194536.265246-1-b.bilas@grinn-global.com> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] package/cegui: disable Python SWIG extension modules when OpenGL renderer is disabled 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: , Cc: Bartosz Bilas Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Those modules need OpenGL renderer so disable them when it's missing. Fixes: - http://autobuild.buildroot.net/results/592/592fcffb226c8b44ada5fa3cdb8ab15c627f29dc/ - http://autobuild.buildroot.net/results/9ad/9ad768b7e2a3c59833e03986c245f2f4b5d25dcd/ and more... Signed-off-by: Bartosz Bilas --- package/cegui/cegui.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/cegui/cegui.mk b/package/cegui/cegui.mk index 747ebbb953..c5ff45818e 100644 --- a/package/cegui/cegui.mk +++ b/package/cegui/cegui.mk @@ -38,7 +38,8 @@ CEGUI_CONF_OPTS += -DCEGUI_USE_EPOXY=ON -DCEGUI_USE_GLEW=OFF \ else CEGUI_CONF_OPTS += -DCEGUI_USE_EPOXY=OFF -DCEGUI_USE_GLEW=OFF \ -DCEGUI_BUILD_RENDERER_OPENGL=OFF \ - -DCEGUI_BUILD_RENDERER_OPENGL3=OFF + -DCEGUI_BUILD_RENDERER_OPENGL3=OFF \ + -DCEGUI_BUILD_PYTHON_MODULES_SWIG=OFF endif ifeq ($(BR2_PACKAGE_EXPAT),y)