package/webp: enable host build

This will be needed by qt5webengine.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
[Peter: explicitly disable gif/gl/jpeg/png/tiff support]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
James Hilliard 2022-02-05 13:18:30 -07:00 committed by Peter Korsgaard
parent 5e19ca4cf3
commit 78a3807295

View File

@ -19,6 +19,15 @@ WEBP_CONF_OPTS += \
--with-tiffincludedir=$(STAGING_DIR)/usr/include \
--with-tifflibdir=$(STAGING_DIR)/usr/lib
HOST_WEBP_CONF_OPTS += \
--enable-libwebpdemux \
--enable-libwebpmux \
--disable-gif \
--disable-gl \
--disable-jpeg \
--disable-png \
--disable-tiff
ifeq ($(BR2_PACKAGE_WEBP_DEMUX),y)
WEBP_CONF_OPTS += --enable-libwebpdemux
else
@ -56,3 +65,4 @@ WEBP_DEPENDENCIES += $(if $(BR2_PACKAGE_JPEG),jpeg)
WEBP_DEPENDENCIES += $(if $(BR2_PACKAGE_TIFF),tiff)
$(eval $(autotools-package))
$(eval $(host-autotools-package))