From eda35c429b9df120dcb06a34e20619d87b6d2fc3 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Thu, 30 Sep 2021 08:18:49 +0200 Subject: [PATCH] package/zbar: fix python build Fix the following build failure with python raised since its activation by commit cfc80eeeb4f3cb8e59b56bedd5bd49761764671f: In file included from /home/giuliobenetti/autobuild/run/instance-2/output-1/host/include/python3.9/Python.h:63, from python/zbarmodule.h:24, from python/zbarmodule.c:24: /home/giuliobenetti/autobuild/run/instance-2/output-1/host/include/python3.9/pyport.h:741:2: error: #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)." 741 | #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)." | ^~~~~ Fixes: - http://autobuild.buildroot.org/results/43a8c8d5403c329f2d754ed09807a53772174397 Signed-off-by: Fabrice Fontaine Signed-off-by: Yann E. MORIN --- package/zbar/zbar.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/zbar/zbar.mk b/package/zbar/zbar.mk index 5554dca6a1..fb83fa01d5 100644 --- a/package/zbar/zbar.mk +++ b/package/zbar/zbar.mk @@ -34,6 +34,7 @@ endif ifeq ($(BR2_PACKAGE_PYTHON3),y) ZBAR_DEPENDENCIES += host-python3 python3 ZBAR_CONF_OPTS += --with-python=python3 +ZBAR_CONF_ENV += PYTHON_CONFIG="$(STAGING_DIR)/usr/bin/python3-config" else ZBAR_CONF_OPTS += --with-python=no endif