c88c1d3319
- security fixes for lossless encoder (#603, chromium: #1420107, #1455619, CVE-2023-1999) - security fix for lossless decoder (chromium: #1479274, CVE-2023-4863) https://github.com/webmproject/libwebp/blob/v1.3.2/NEWS Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
85 lines
1.9 KiB
Makefile
85 lines
1.9 KiB
Makefile
################################################################################
|
|
#
|
|
# webp
|
|
#
|
|
################################################################################
|
|
|
|
WEBP_VERSION = 1.3.2
|
|
WEBP_SOURCE = libwebp-$(WEBP_VERSION).tar.gz
|
|
WEBP_SITE = http://downloads.webmproject.org/releases/webp
|
|
WEBP_LICENSE = BSD-3-Clause
|
|
WEBP_LICENSE_FILES = COPYING
|
|
WEBP_CPE_ID_VENDOR = webmproject
|
|
WEBP_CPE_ID_PRODUCT = libwebp
|
|
WEBP_INSTALL_STAGING = YES
|
|
|
|
WEBP_CONF_OPTS += \
|
|
--disable-sdl
|
|
|
|
HOST_WEBP_CONF_OPTS += \
|
|
--enable-libwebpdemux \
|
|
--enable-libwebpmux \
|
|
--disable-gif \
|
|
--disable-gl \
|
|
--disable-jpeg \
|
|
--disable-png \
|
|
--disable-sdl \
|
|
--disable-tiff
|
|
|
|
ifeq ($(BR2_PACKAGE_WEBP_DEMUX),y)
|
|
WEBP_CONF_OPTS += --enable-libwebpdemux
|
|
else
|
|
WEBP_CONF_OPTS += --disable-libwebpdemux
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WEBP_MUX),y)
|
|
WEBP_CONF_OPTS += --enable-libwebpmux
|
|
else
|
|
WEBP_CONF_OPTS += --disable-libwebpmux
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GIFLIB),y)
|
|
WEBP_DEPENDENCIES += giflib
|
|
WEBP_CONF_OPTS += --enable-gif
|
|
else
|
|
WEBP_CONF_OPTS += --disable-gif
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
WEBP_DEPENDENCIES += jpeg
|
|
WEBP_CONF_OPTS += \
|
|
--enable-jpeg \
|
|
--with-jpegincludedir=$(STAGING_DIR)/usr/include \
|
|
--with-jpeglibdir=$(STAGING_DIR)/usr/lib
|
|
else
|
|
WEBP_CONF_OPTS += --disable-jpeg
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBFREEGLUT),y)
|
|
WEBP_DEPENDENCIES += libfreeglut
|
|
WEBP_CONF_OPTS += --enable-gl
|
|
else
|
|
WEBP_CONF_OPTS += --disable-gl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
WEBP_DEPENDENCIES += libpng
|
|
WEBP_CONF_OPTS += --enable-png
|
|
WEBP_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=$(STAGING_DIR)/usr/bin/libpng-config
|
|
else
|
|
WEBP_CONF_OPTS += --disable-png
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_TIFF),y)
|
|
WEBP_DEPENDENCIES += tiff
|
|
WEBP_CONF_OPTS += \
|
|
--enable-tiff \
|
|
--with-tiffincludedir=$(STAGING_DIR)/usr/include \
|
|
--with-tifflibdir=$(STAGING_DIR)/usr/lib
|
|
else
|
|
WEBP_CONF_OPTS += --disable-tiff
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|