From: Fabrice Fontaine Date: Sat, 22 May 2021 17:41:57 +0000 (+0200) Subject: package/python-pillow: add xcb support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e1e0e275c6715bf2963bdcf32d7008321e525d1b;p=buildroot.git package/python-pillow: add xcb support libxcb is an optional dependency since version 7.1.0 and https://github.com/python-pillow/Pillow/commit/3c39e6fcf6a11b18eec0d1c66710bcd35033d069 Signed-off-by: Fabrice Fontaine Signed-off-by: Yann E. MORIN --- diff --git a/package/python-pillow/python-pillow.mk b/package/python-pillow/python-pillow.mk index 3018758b48..ab52f38df1 100644 --- a/package/python-pillow/python-pillow.mk +++ b/package/python-pillow/python-pillow.mk @@ -35,6 +35,13 @@ else PYTHON_PILLOW_BUILD_OPTS += --disable-lcms endif +ifeq ($(BR2_PACKAGE_LIBXCB),y) +PYTHON_PILLOW_DEPENDENCIES += libxcb +PYTHON_PILLOW_BUILD_OPTS += --enable-xcb +else +PYTHON_PILLOW_BUILD_OPTS += --disable-xcb +endif + ifeq ($(BR2_PACKAGE_OPENJPEG),y) PYTHON_PILLOW_DEPENDENCIES += openjpeg PYTHON_PILLOW_BUILD_OPTS += --enable-jpeg2000