Jelajahi Sumber

package/python-pillow: set new build options

Explicitly set new imagequant, raqm and zlib build options.

Fixes: baa3db0c34e826cc1c6469fd8ecbfbc5c2ef2e2c

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
James Hilliard 9 bulan lalu
induk
melakukan
66f66bbdb5
1 mengubah file dengan 11 tambahan dan 1 penghapusan
  1. 11 1
      package/python-pillow/python-pillow.mk

+ 11 - 1
package/python-pillow/python-pillow.mk

@@ -14,7 +14,10 @@ PYTHON_PILLOW_CPE_ID_PRODUCT = pillow
 PYTHON_PILLOW_SETUP_TYPE = setuptools
 
 PYTHON_PILLOW_DEPENDENCIES = host-pkgconf
-PYTHON_PILLOW_BUILD_OPTS = -Cplatform-guessing=disable
+PYTHON_PILLOW_BUILD_OPTS = \
+	-Cplatform-guessing=disable \
+	-Cimagequant=disable \
+	-Craqm=disable
 
 ifeq ($(BR2_PACKAGE_FREETYPE),y)
 PYTHON_PILLOW_DEPENDENCIES += freetype
@@ -65,4 +68,11 @@ else
 PYTHON_PILLOW_BUILD_OPTS += -Cwebp=disable
 endif
 
+ifeq ($(BR2_PACKAGE_ZLIB),y)
+PYTHON_PILLOW_DEPENDENCIES += zlib
+PYTHON_PILLOW_BUILD_OPTS += -Czlib=enable
+else
+PYTHON_PILLOW_BUILD_OPTS += -Czlib=disable
+endif
+
 $(eval $(python-package))