From patchwork Tue Jul 20 18:10:48 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartosz Bilas X-Patchwork-Id: 1507708 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=2605:bc80:3010::136; helo=smtp3.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from smtp3.osuosl.org (smtp3.osuosl.org [IPv6:2605:bc80:3010::136]) (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 4GTmxH2Tn9z9sRf for ; Wed, 21 Jul 2021 04:11:14 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id 29E4060597; Tue, 20 Jul 2021 18:11:12 +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 FzaHBbN2JVtD; Tue, 20 Jul 2021 18:11:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp3.osuosl.org (Postfix) with ESMTP id 7F1C4600B5; Tue, 20 Jul 2021 18:11:10 +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 96D531BF5A7 for ; Tue, 20 Jul 2021 18:11:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id 864DF600B5 for ; Tue, 20 Jul 2021 18:11:09 +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 6nOOvN6JuKvr for ; Tue, 20 Jul 2021 18:11:05 +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 BEDA460093 for ; Tue, 20 Jul 2021 18:11:05 +0000 (UTC) X-Virus-Scanned: by amavisd-new using ClamAV (8) Received: from bartekk-pc.lan (host-81-161-192-59.oxylion.net.pl [81.161.192.59]) by server220076.nazwa.pl (Postfix) with ESMTP id 771531C5968; Tue, 20 Jul 2021 20:11:02 +0200 (CEST) From: Bartosz Bilas To: buildroot@buildroot.org Date: Tue, 20 Jul 2021 20:10:48 +0200 Message-Id: <20210720181048.7015-1-b.bilas@grinn-global.com> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Subject: [Buildroot] [PATCH v2] package/cegui: disable Python SWIG extension modules unconditionally 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" It seems that Python SWIG extension module(s) are not compatible with buildroot's SWIG version so disable them unconditionally to fix the following build errors: Fixes: - http://autobuild.buildroot.net/results/f80/f80ebdcbde08c13eddec9fadc39b9c2bd4b83e94// and more... Signed-off-by: Bartosz Bilas --- Changes v1 -> v2: - disable CEGUI_BUILD_PYTHON_MODULES_SWIG option unconditionally 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..127d3b0fad 100644 --- a/package/cegui/cegui.mk +++ b/package/cegui/cegui.mk @@ -16,7 +16,8 @@ CEGUI_CONF_OPTS = \ -DCEGUI_BUILD_XMLPARSER_XERCES=OFF \ -DCEGUI_USE_FRIBIDI=OFF \ -DCEGUI_SAMPLES_ENABLED=OFF \ - -DCEGUI_BUILD_APPLICATION_TEMPLATES=OFF + -DCEGUI_BUILD_APPLICATION_TEMPLATES=OFF \ + -DCEGUI_BUILD_PYTHON_MODULES_SWIG=OFF CEGUI_DEPENDENCIES = glm \ $(if $(BR2_PACKAGE_LIBGLFW),libglfw) \ $(if $(BR2_PACKAGE_HAS_LIBGL),libgl) \