package/imagemagick: add option to build host-imagemagick with XML support

Since upstream commit
25e3a4f384
(which first appeared in version 7.1.1-19), ImageMagick does not trust
unvalidated XMP profiles in images anymore.

If such a XML profile is encountered inside e.g. a PNG image the
processing is aborted. Validating the XMP profile requires that
ImageMagick is compiled with XML support.
As host-imagemagick supports PNG file also activate XML support.

Signed-off-by: Christian Hitz <christian.hitz@bbv.ch>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Christian Hitz 2023-12-11 14:53:21 +01:00 committed by Thomas Petazzoni
parent c81af1667f
commit df89e73e92
2 changed files with 20 additions and 5 deletions

View File

@ -18,6 +18,7 @@ config BR2_PACKAGE_HOST_IMAGEMAGICK_SVG
bool "SVG support"
depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS # host-librsvg
depends on BR2_HOST_GCC_AT_LEAST_4_9 # host-pango -> host-harfbuzz
select BR2_PACKAGE_HOST_IMAGEMAGICK_XML
help
Say 'y' here is you need ImageMagick tools (like convert)
to support SVG.
@ -29,4 +30,14 @@ comment "SVG support needs host gcc >= 4.9"
depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS
depends on !BR2_HOST_GCC_AT_LEAST_4_9
config BR2_PACKAGE_HOST_IMAGEMAGICK_XML
bool "XML support"
help
Say 'y' here if you need ImageMagick to support XML. Indeed,
ImageMagick does not trust unvalidated XMP profiles in
images. If such a XML profile is encountered inside e.g. a
PNG image the processing is aborted. Validating the XMP
profile requires that ImageMagick is compiled with XML
support.
endif

View File

@ -238,22 +238,26 @@ HOST_IMAGEMAGICK_DEPENDENCIES += \
host-fontconfig \
host-freetype \
host-librsvg \
host-libxml2 \
host-pango
HOST_IMAGEMAGICK_CONF_ENV += ac_cv_path_xml2_config=$(HOST_DIR)/bin/xml2-config
HOST_IMAGEMAGICK_CONF_OPTS += \
--with-fontconfig \
--with-freetype \
--with-pango \
--with-rsvg \
--with-xml
--with-rsvg
else
HOST_IMAGEMAGICK_CONF_OPTS += \
--without-fontconfig \
--without-freetype \
--without-pango \
--without-rsvg \
--without-xml
--without-rsvg
endif
ifeq ($(BR2_PACKAGE_HOST_IMAGEMAGICK_XML),y)
HOST_IMAGEMAGICK_CONF_OPTS += --with-xml
HOST_IMAGEMAGICK_DEPENDENCIES += host-libxml2
else
HOST_IMAGEMAGICK_CONF_OPTS += --without-xml
endif
$(eval $(autotools-package))