help
This enables the loader code that loads tiff files.
+config BR2_PACKAGE_LIBEFL_WEBP
+ bool "libevas webp image loader"
+ select BR2_PACKAGE_WEBP
+ help
+ This enables the loader code that loads images using WebP.
+
endif # BR2_PACKAGE_LIBEFL
# --disable-cxx-bindings: disable C++11 bindings.
# --disable-fb: disable frame buffer support.
# --disable-image-loader-jp2k: disable JPEG 2000 support.
-# --disable-image-loader-webp: disable webp support.
# --disable-sdl: disable sdl2 support.
# --disable-systemd: disable systemd support.
# --enable-lua-old: disable Elua and remove luajit dependency.
--disable-cxx-bindings \
--disable-fb \
--disable-image-loader-jp2k \
- --disable-image-loader-webp \
--disable-sdl \
--disable-systemd \
--enable-lua-old \
LIBEFL_CONF_OPTS += --disable-image-loader-tiff
endif
+ifeq ($(BR2_PACKAGE_LIBEFL_WEBP),y)
+LIBEFL_CONF_OPTS += --enable-image-loader-webp=yes
+LIBEFL_DEPENDENCIES += webp
+else
+LIBEFL_CONF_OPTS += --disable-image-loader-webp
+endif
+
$(eval $(autotools-package))
################################################################################